Add ChatService, Folder for Managers

This commit is contained in:
hydrant
2018-09-18 22:40:14 +02:00
parent a0787538c9
commit 8299b6c900
2 changed files with 25 additions and 0 deletions

10
Server/Managers/.gitkeep Normal file
View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace reallife_gamemode.Server.Managers
{
class _
{
}
}

View File

@@ -0,0 +1,15 @@
using GTANetworkAPI;
using System;
using System.Collections.Generic;
using System.Text;
namespace reallife_gamemode.Server.Services
{
class ChatService
{
public static void NotAuthorized(Client player)
{
player.SendChatMessage("~r~[FEHLER]~s~ Du kannst diesen Befehl nicht ausführen.");
}
}
}