Collapsed the pager into a single file, removing lua hooks

I need to re-add the lua hooks, but it'll be easy.
This commit is contained in:
Kayne Ruse
2014-06-08 04:01:09 +10:00
parent 5175a4e40d
commit f034c32c38
12 changed files with 68 additions and 346 deletions
+1 -3
View File
@@ -23,8 +23,6 @@
#define ROOMDATA_HPP_
//map system
#include "map_allocator.hpp"
#include "map_file_format.hpp"
#include "region_pager.hpp"
struct RoomData {
@@ -37,7 +35,7 @@ struct RoomData {
};
//members
RegionPager<LuaAllocator, LuaFormat> pager;
RegionPager pager;
RoomType type;
//TODO: collision map
-1
View File
@@ -35,7 +35,6 @@ public:
//public access methods
//TODO
//TODO: setup the pagers and functors of each room object
//accessors and mutators
RoomData* GetRoom(int uid);
+1
View File
@@ -23,6 +23,7 @@
#include "sql_utility.hpp"
#include "serial.hpp"
#include "utility.hpp"
#include <stdexcept>
#include <iostream>