mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-25 23:17:28 +00:00
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);
|
||
|
}
|