diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-28 21:32:04 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-28 21:32:04 -0400 |
commit | a466eb8fd6e5707aaa1bfafa28535b82c67d69d8 (patch) | |
tree | ce3a09b7b98584b3d42351eae7fd7e183e38b7f8 /include/entities.hpp | |
parent | 00f633afb62ed6914205639b44dcdaf839a2c2f7 (diff) |
chests?, custom controls
Diffstat (limited to 'include/entities.hpp')
-rw-r--r-- | include/entities.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/entities.hpp b/include/entities.hpp index 76b6fa8..4abb3cb 100644 --- a/include/entities.hpp +++ b/include/entities.hpp @@ -107,6 +107,7 @@ extern const unsigned int NPC_INV_SIZE; // a prototype of the world class, necessary for some function prototypes class World; +class IndoorWorld; /** * The light structure, used to store light coordinates and color. @@ -325,7 +326,8 @@ public: class Structures : public Entity { public: BUILD_SUB bsubtype; - World *inWorld, *insideWorld; + World *inWorld; + IndoorWorld *insideWorld; std::string inside; std::string textureLoc; |