mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
d067a8d12f
* chore: split out slash commands into multiple files Breakup the monolithic file don't register slashcommands on startup * fix typo
13 lines
973 B
C++
13 lines
973 B
C++
namespace GMGreaterThanZeroCommands {
|
|
void Kick(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void MailItem(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Ban(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void ApproveProperty(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Mute(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Fly(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void AttackImmune(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void GmImmune(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void GmInvis(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void SetName(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Title(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
} |