diff options
Diffstat (limited to '')
-rw-r--r-- | source/cWindow.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/cWindow.h b/source/cWindow.h index 888a11b98..d2726d171 100644 --- a/source/cWindow.h +++ b/source/cWindow.h @@ -17,6 +17,15 @@ public: int GetWindowID() { return m_WindowID; }
void SetWindowID( int a_WindowID ) { m_WindowID = a_WindowID; }
+
+ static enum WindowType {
+ Chest,
+ Workbench,
+ Furnace,
+ Dispenser,
+ Enchantment,
+ Brewery
+ };
int GetWindowType() { return m_WindowType; }
void SetWindowType( int a_WindowType ) { m_WindowType = a_WindowType; }
|