diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-09 08:47:39 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-09 08:47:39 -0500 |
commit | b0f7e8d2caa72ab1fe93fa58dbfa841750d96037 (patch) | |
tree | a72cfd9752944a4c8628527e9dc5a62ae31e7e3e /include/world.h | |
parent | 9748d6306db7aa66128baeeca4c2a27b0efa1d87 (diff) |
draw/handle all layers
Diffstat (limited to 'include/world.h')
-rw-r--r-- | include/world.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/world.h b/include/world.h index 754f3c7..9d7a33b 100644 --- a/include/world.h +++ b/include/world.h @@ -76,7 +76,7 @@ public: std::vector<Mob *> mob; std::vector<Entity *> entity; - void addStructure(_TYPE t,float x,float y); + void addStructure(_TYPE t,float x,float y,void *inside); void addMob(int t,float x,float y); void addNPC(float x,float y); @@ -173,6 +173,7 @@ float worldGetYBase(World *w); class IndoorWorld : public World { public: + World *outside; IndoorWorld(void); ~IndoorWorld(void); |