mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-12 19:28:21 +00:00
21 lines
1.2 KiB
C++
21 lines
1.2 KiB
C++
#ifndef GMGREATERTHANZEROCOMMANDS_H
|
|
#define GMGREATERTHANZEROCOMMANDS_H
|
|
|
|
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);
|
|
void ShowAll(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void FindPlayer(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
}
|
|
|
|
#endif //!GMGREATERTHANZEROCOMMANDS_H
|