mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
22 lines
473 B
C++
22 lines
473 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);
|
|
bool CheckIfAccessibleZone(const unsigned int zoneID);
|
|
|
|
void SendAnnouncement(const std::string& title, const std::string& message);
|
|
};
|
|
|
|
#endif // SLASHCOMMANDHANDLER_H
|