mta-mono/MultiTheftAuto/Native/Fire.cs
2015-12-12 13:10:23 +03:00

12 lines
242 B
C#

using System;
using System.Runtime.CompilerServices;
namespace MultiTheftAuto.Native
{
public class Fire
{
[MethodImpl( MethodImplOptions.InternalCall )]
public static extern bool Create( Vector3 position, float size = 1.8f );
}
}