mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
20 lines
416 B
C
20 lines
416 B
C
|
/*
|
||
|
* Darkflame Universe
|
||
|
* Copyright 2018
|
||
|
*/
|
||
|
|
||
|
#ifndef SLASHCOMMANDHANDLER_H
|
||
|
#define SLASHCOMMANDHANDLER_H
|
||
|
|
||
|
#include "RakNetTypes.h"
|
||
|
#include <string>
|
||
|
|
||
|
class Entity;
|
||
|
|
||
|
namespace SlashCommandHandler {
|
||
|
void HandleChatCommand(const std::u16string& command, Entity* entity, const SystemAddress& sysAddr);
|
||
|
void SendAnnouncement(const std::string& title, const std::string& message);
|
||
|
};
|
||
|
|
||
|
#endif // SLASHCOMMANDHANDLER_H
|