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
+5 -5
View File
@@ -24,23 +24,23 @@
#include "character_manager.hpp"
static int setOnCreate(lua_State* L) {
//TODO: (9) empty
//TODO: (9) setOnCreate()
}
static int setOnLoad(lua_State* L) {
//TODO: (9) empty
//TODO: (9) setOnLoad()
}
static int setOnSave(lua_State* L) {
//TODO: (9) empty
//TODO: (9) setOnSave()
}
static int setOnUnload(lua_State* L) {
//TODO: (9) empty
//TODO: (9) setOnUnload()
}
static int setOnDelete(lua_State* L) {
//TODO: (9) empty
//TODO: (9) setOnDelete()
}
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) {
//TODO: (9) empty
//TODO: (9) ServerApplication::hCharacterAttack()
}
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"
void ServerApplication::hTextBroadcast(TextPacket* const argPacket) {
//TODO: (9) empty
//TODO: (9) ServerApplication::hTextBroadcast()
}
void ServerApplication::hTextSpeech(TextPacket* const argPacket) {
//TODO: (9) empty
//TODO: (9) ServerApplication::hTextSpeech()
}
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) {
//TODO: (9) empty
//TODO: (9) ServerApplication::hQueryCharacterStats()
}
void ServerApplication::hQueryCharacterLocation(CharacterPacket* const argPacket) {
//TODO: (9) empty
//TODO: (9) ServerApplication::hQueryCharacterLocation()
}
void ServerApplication::hQueryMonsterExists(MonsterPacket* const argPacket) {
//TODO: (9) empty
//TODO: (9) ServerApplication::hQueryMonsterExists()
}
void ServerApplication::hQueryMonsterStats(MonsterPacket* const argPacket) {
//TODO: (9) empty
//TODO: (9) ServerApplication::hQueryMonsterStats()
}
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) {
//TODO: (9) empty
//TODO: (9) ServerApplication::hAdminDisconnectForced()
}
void ServerApplication::hAdminShutdownRequest(ClientPacket* const argPacket) {
@@ -85,5 +85,5 @@ void ServerApplication::hAdminShutdownRequest(ClientPacket* const argPacket) {
}
void ServerApplication::SaveServerState() {
//TODO: (9) empty
//TODO: (9) ServerApplication::SaveServerState()
}
+1 -1
View File
@@ -22,5 +22,5 @@
#include "server_application.hpp"
void ServerApplication::hMonsterDamage(MonsterPacket* const argPacket) {
//TODO: (9) empty
//TODO: (9) ServerApplication::hMonsterDamage()
}