mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-22 02:02:23 +00:00
34f4eebb14
Removed Native static classes.
28 lines
766 B
C#
28 lines
766 B
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace MultiTheftAuto
|
|
{
|
|
public class Object : Element
|
|
{
|
|
internal Object()
|
|
{
|
|
}
|
|
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
public extern Object( int modelid, Vector3 position, Vector3 rotation, bool isLowLOD = false );
|
|
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
public extern float GetScale();
|
|
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
public extern bool SetScale( float scale );
|
|
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
public extern bool Move( int time, Vector3 target, Vector3 rotation, string easingType, float easingPeriod, float easingAmplitude, float easingOvershoot );
|
|
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
public extern bool Stop();
|
|
}
|
|
}
|