mta-mono/MultiTheftAuto/Config.cs
2015-12-12 13:10:23 +03:00

15 lines
335 B
C#

using System;
using System.Runtime.CompilerServices;
namespace MultiTheftAuto
{
public static class Config
{
[MethodImpl( MethodImplOptions.InternalCall )]
public static extern string Get( string key );
[MethodImpl( MethodImplOptions.InternalCall )]
public static extern bool Set( string key, string value );
}
}