mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-22 10:12:20 +00:00
12 lines
242 B
C#
12 lines
242 B
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace MultiTheftAuto.Native
|
|
{
|
|
public class Fire
|
|
{
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
public static extern bool Create( Vector3 position, float size = 1.8f );
|
|
}
|
|
}
|