mta-mono/MultiTheftAuto/Native/Explosion.cs

12 lines
261 B
C#
Raw Normal View History

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