mta-mono/MultiTheftAuto/Explosion.cs

12 lines
258 B
C#
Raw Permalink Normal View History

2015-12-12 10:10:23 +00:00
using System;
using System.Runtime.CompilerServices;
namespace MultiTheftAuto
2015-12-12 10:10:23 +00:00
{
public class Explosion
{
[MethodImpl( MethodImplOptions.InternalCall )]
public static extern bool Create( Vector3 position, int theType, Element creator = null );
2015-12-12 10:10:23 +00:00
}
}