mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
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);
|
||
|
}
|