mta-mono/MultiTheftAuto/Server.cs

18 lines
442 B
C#
Raw Normal View History

2015-12-12 10:10:23 +00:00
using System;
using System.Runtime.CompilerServices;
namespace MultiTheftAuto
{
public class Server
{
public static bool OutputChatBox( string text, Element element, Color color, bool colorCoded )
{
return Native.Server.OutputChatBox( text, element.userdata, color, colorCoded );
}
public static bool OutputConsole( string text, Element element )
{
return Native.Server.OutputConsole( text, element.userdata );
}
}
}