diff options
Diffstat (limited to 'include/world.hpp')
-rw-r--r-- | include/world.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/world.hpp b/include/world.hpp index 4b25e85..dc07267 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -17,8 +17,7 @@ * in World::setBackground() to select the appropriate images. */ enum class WorldBGType : unsigned int { - Forest = 0, /**< A forest theme. */ - WoodHouse /**< An indoor wooden house theme. */ + Forest = 0 /**< A forest theme. */ }; /** @@ -198,6 +197,9 @@ private: public: + float HouseWidth; + GLuint houseTex; + inline bool isIndoor(void) const { return m_Indoor; } |