mta-mono/MultiTheftAuto/Config.cs

15 lines
335 B
C#
Raw Normal View History

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