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
16 lines
1.1 KiB
C++
16 lines
1.1 KiB
C++
namespace GMZeroCommands {
|
|
void Help(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Credits(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Info(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Die(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Ping(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Pvp(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void RequestMailCount(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Who(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void FixStats(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Join(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void LeaveZone(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Resurrect(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void InstanceInfo(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
}
|