Switched TODO: empty to TODO: *function name*

This commit is contained in:
Kayne Ruse
2015-02-27 03:27:37 +11:00
parent 1210d2d24f
commit c45bda645b
12 changed files with 33 additions and 33 deletions
+1 -1
View File
@@ -24,7 +24,7 @@
#include "config_utility.hpp" #include "config_utility.hpp"
void BaseMonster::CorrectSprite() { void BaseMonster::CorrectSprite() {
//TODO: (9) empty //TODO: (9) BaseMonster::CorrectSprite()
} }
std::string BaseMonster::SetHandle(std::string s) { std::string BaseMonster::SetHandle(std::string s) {
+4 -4
View File
@@ -146,11 +146,11 @@ void World::hQueryCharacterExists(CharacterPacket* const argPacket) {
} }
void World::hQueryCharacterStats(CharacterPacket* const argPacket) { void World::hQueryCharacterStats(CharacterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hQueryCharacterStats()
} }
void World::hQueryCharacterLocation(CharacterPacket* const argPacket) { void World::hQueryCharacterLocation(CharacterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hQueryCharacterLocation()
} }
void World::hCharacterMovement(CharacterPacket* const argPacket) { void World::hCharacterMovement(CharacterPacket* const argPacket) {
@@ -170,11 +170,11 @@ void World::hCharacterMovement(CharacterPacket* const argPacket) {
} }
void World::hCharacterAttack(CharacterPacket* const argPacket) { void World::hCharacterAttack(CharacterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hCharacterAttack()
} }
void World::hCharacterDamage(CharacterPacket* const argPacket) { void World::hCharacterDamage(CharacterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hCharacterDamage()
} }
//------------------------- //-------------------------
+3 -3
View File
@@ -26,14 +26,14 @@
//------------------------- //-------------------------
void World::hTextBroadcast(TextPacket* const argPacket) { void World::hTextBroadcast(TextPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hTextBroadcast()
} }
void World::hTextSpeech(TextPacket* const argPacket) { void World::hTextSpeech(TextPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hTextSpeech()
} }
void World::hTextWhisper(TextPacket* const argPacket) { void World::hTextWhisper(TextPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hTextWhisper()
} }
+1 -1
View File
@@ -91,7 +91,7 @@ void World::SendDisconnectRequest() {
} }
void World::SendAdminDisconnectForced() { void World::SendAdminDisconnectForced() {
//TODO: (9) empty //TODO: (9) World::SendAdminDisconnectForced()
} }
+4 -4
View File
@@ -99,11 +99,11 @@ void World::hQueryMonsterExists(MonsterPacket* const argPacket) {
} }
void World::hQueryMonsterStats(MonsterPacket* const argPacket) { void World::hQueryMonsterStats(MonsterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hQueryMonsterStats()
} }
void World::hQueryMonsterLocation(MonsterPacket* const argPacket) { void World::hQueryMonsterLocation(MonsterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hQueryMonsterLocation()
} }
void World::hMonsterMovement(MonsterPacket* const argPacket) { void World::hMonsterMovement(MonsterPacket* const argPacket) {
@@ -118,9 +118,9 @@ void World::hMonsterMovement(MonsterPacket* const argPacket) {
} }
void World::hMonsterAttack(MonsterPacket* const argPacket) { void World::hMonsterAttack(MonsterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hMonsterAttack()
} }
void World::hMonsterDamage(MonsterPacket* const argPacket) { void World::hMonsterDamage(MonsterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) World::hMonsterDamage()
} }
+2 -2
View File
@@ -252,11 +252,11 @@ void LobbyMenu::HandleLoginResponse(ClientPacket* const argPacket) {
} }
void LobbyMenu::HandleJoinRejection(TextPacket* const argPacket) { void LobbyMenu::HandleJoinRejection(TextPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) LobbyMenu::HandleJoinRejection()
} }
void LobbyMenu::HandleLoginRejection(TextPacket* const argPacket) { void LobbyMenu::HandleLoginRejection(TextPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) LobbyMenu::HandleLoginRejection
} }
//------------------------- //-------------------------
+5 -5
View File
@@ -24,23 +24,23 @@
#include "character_manager.hpp" #include "character_manager.hpp"
static int setOnCreate(lua_State* L) { static int setOnCreate(lua_State* L) {
//TODO: (9) empty //TODO: (9) setOnCreate()
} }
static int setOnLoad(lua_State* L) { static int setOnLoad(lua_State* L) {
//TODO: (9) empty //TODO: (9) setOnLoad()
} }
static int setOnSave(lua_State* L) { static int setOnSave(lua_State* L) {
//TODO: (9) empty //TODO: (9) setOnSave()
} }
static int setOnUnload(lua_State* L) { static int setOnUnload(lua_State* L) {
//TODO: (9) empty //TODO: (9) setOnUnload()
} }
static int setOnDelete(lua_State* L) { static int setOnDelete(lua_State* L) {
//TODO: (9) empty //TODO: (9) setOnDelete()
} }
static int getCharacter(lua_State* L) { static int getCharacter(lua_State* L) {
+2 -2
View File
@@ -243,9 +243,9 @@ void ServerApplication::hCharacterMovement(CharacterPacket* const argPacket) {
} }
void ServerApplication::hCharacterAttack(CharacterPacket* const argPacket) { void ServerApplication::hCharacterAttack(CharacterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hCharacterAttack()
} }
void ServerApplication::hCharacterDamage(CharacterPacket* const argPacket) { void ServerApplication::hCharacterDamage(CharacterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hCharacterDamage()
} }
+3 -3
View File
@@ -22,13 +22,13 @@
#include "server_application.hpp" #include "server_application.hpp"
void ServerApplication::hTextBroadcast(TextPacket* const argPacket) { void ServerApplication::hTextBroadcast(TextPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hTextBroadcast()
} }
void ServerApplication::hTextSpeech(TextPacket* const argPacket) { void ServerApplication::hTextSpeech(TextPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hTextSpeech()
} }
void ServerApplication::hTextWhisper(TextPacket* const argPacket) { void ServerApplication::hTextWhisper(TextPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hTextWhisper()
} }
+5 -5
View File
@@ -76,21 +76,21 @@ void ServerApplication::hQueryCharacterExists(CharacterPacket* const argPacket)
} }
void ServerApplication::hQueryCharacterStats(CharacterPacket* const argPacket) { void ServerApplication::hQueryCharacterStats(CharacterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hQueryCharacterStats()
} }
void ServerApplication::hQueryCharacterLocation(CharacterPacket* const argPacket) { void ServerApplication::hQueryCharacterLocation(CharacterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hQueryCharacterLocation()
} }
void ServerApplication::hQueryMonsterExists(MonsterPacket* const argPacket) { void ServerApplication::hQueryMonsterExists(MonsterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hQueryMonsterExists()
} }
void ServerApplication::hQueryMonsterStats(MonsterPacket* const argPacket) { void ServerApplication::hQueryMonsterStats(MonsterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hQueryMonsterStats()
} }
void ServerApplication::hQueryMonsterLocation(MonsterPacket* const argPacket) { void ServerApplication::hQueryMonsterLocation(MonsterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hQueryMonsterLocation()
} }
+2 -2
View File
@@ -30,7 +30,7 @@
//------------------------- //-------------------------
void ServerApplication::hAdminDisconnectForced(ClientPacket* const argPacket) { void ServerApplication::hAdminDisconnectForced(ClientPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hAdminDisconnectForced()
} }
void ServerApplication::hAdminShutdownRequest(ClientPacket* const argPacket) { void ServerApplication::hAdminShutdownRequest(ClientPacket* const argPacket) {
@@ -85,5 +85,5 @@ void ServerApplication::hAdminShutdownRequest(ClientPacket* const argPacket) {
} }
void ServerApplication::SaveServerState() { void ServerApplication::SaveServerState() {
//TODO: (9) empty //TODO: (9) ServerApplication::SaveServerState()
} }
+1 -1
View File
@@ -22,5 +22,5 @@
#include "server_application.hpp" #include "server_application.hpp"
void ServerApplication::hMonsterDamage(MonsterPacket* const argPacket) { void ServerApplication::hMonsterDamage(MonsterPacket* const argPacket) {
//TODO: (9) empty //TODO: (9) ServerApplication::hMonsterDamage()
} }