diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-18 10:49:02 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-18 10:49:02 -0400 |
commit | 02993cd8697970db97a7dd7a67a893ad8dce45a3 (patch) | |
tree | 5f01620b0fc86b7f45973d23cb9e5e34baa76e48 /include | |
parent | 0964a086ccfe2ba18b8e40d0199bdaf80841f344 (diff) |
inside world work
Diffstat (limited to 'include')
-rw-r--r-- | include/common.hpp | 2 | ||||
-rw-r--r-- | include/world.hpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/common.hpp b/include/common.hpp index 69e6a11..31c8d62 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -55,6 +55,8 @@ typedef unsigned int uint; */ #define DEBUG_printf(message, ...) DEBUG_prints(__FILE__, __LINE__, message, __VA_ARGS__) +#define BREAKPOINT __asm__("int $3") + /** * Creates a coordinate of integers. */ diff --git a/include/world.hpp b/include/world.hpp index 4b25e85..7dccf1b 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -198,6 +198,8 @@ private: public: + float HouseWidth; + inline bool isIndoor(void) const { return m_Indoor; } |