Minor comment tweaks

This commit is contained in:
Kayne Ruse
2014-11-06 02:00:13 +11:00
parent f2d79225a3
commit 73d9095604
3 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ static int getPager(lua_State* L) {
return 1;
}
//TODO: GetEntityList?
static const luaL_Reg roomLib[] = {
{"GetPager",getPager},
+1 -1
View File
@@ -26,7 +26,7 @@
int createRoom(lua_State* L) {
//create & get the room
RoomManager& roomMgr = RoomManager::GetSingleton();
int uid = roomMgr.Create();
int uid = roomMgr.Create("",""); //TODO: All new managers need their internals fleshed out
RoomData* room = roomMgr.Get(uid);
//setup the room
+3 -5
View File
@@ -1,8 +1,6 @@
TODO: client_manager.cpp
TODO: door_manager.cpp
TODO: monster_manager.cpp
TODO: *_data.cpp
TODO: reduce friendships
TODO: All new managers need their internals fleshed out
TODO: room_system api
TODO: rewrite the main body of the server
TODO: I need a better way to handle the statistics
TODO: Fix shoddy movement