mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-22 02:02:23 +00:00
34f4eebb14
Removed Native static classes.
12 lines
258 B
C#
12 lines
258 B
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace MultiTheftAuto
|
|
{
|
|
public class Explosion
|
|
{
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
public static extern bool Create( Vector3 position, int theType, Element creator = null );
|
|
}
|
|
}
|