2015-12-12 10:10:23 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
|
|
|
|
|
namespace MultiTheftAuto
|
|
|
|
|
{
|
2015-12-12 19:50:24 +00:00
|
|
|
|
public delegate void CommandHandler( Player player, string command, string[] args );
|
|
|
|
|
|
|
|
|
|
public static class Server
|
2015-12-12 10:10:23 +00:00
|
|
|
|
{
|
2016-01-06 18:06:22 +00:00
|
|
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
|
|
|
public extern static bool OutputChatBox( string text, Element element, Color color, bool colorCoded );
|
2015-12-12 19:50:24 +00:00
|
|
|
|
|
2016-01-06 18:06:22 +00:00
|
|
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
|
|
|
public extern static bool AddCommandHandler( string name, CommandHandler handler, bool restricted = false, bool caseSensitive = true );
|
2015-12-12 19:50:24 +00:00
|
|
|
|
|
2016-01-06 18:06:22 +00:00
|
|
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
|
|
|
public extern static bool ExecuteCommandHandler( string name, Player player, string args );
|
2015-12-12 19:50:24 +00:00
|
|
|
|
|
2016-01-06 18:06:22 +00:00
|
|
|
|
[MethodImpl( MethodImplOptions.InternalCall )]
|
|
|
|
|
public extern static bool RemoveCommandHandler( string name, CommandHandler handler = null );
|
2015-12-12 10:10:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|