12 lines
261 B
C#
Raw Normal View History

2015-12-12 13:10:23 +03:00
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 );
}
}