mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-22 02:02:23 +00:00
15 lines
335 B
C#
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 );
|
|
}
|
|
}
|