aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/common.hpp2
-rw-r--r--include/world.hpp2
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; }