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

12 lines
261 B
C#

using System;
using System.Runtime.CompilerServices;
namespace MultiTheftAuto.Native
{
public class Explosion
{
[MethodImpl( MethodImplOptions.InternalCall )]
public static extern bool Create( Vector3 position, int theType, UInt32 creator = 0 );
}
}