diff LightClone/Source/Environment.h @ 41:a986355cca5f

Move Tower structure into Environment
author koryspansel
date Thu, 22 Sep 2011 10:25:35 -0700
parents 5656c8e382fc
children 91e927584f92
line wrap: on
line diff
--- a/LightClone/Source/Environment.h	Thu Sep 22 10:21:14 2011 -0700
+++ b/LightClone/Source/Environment.h	Thu Sep 22 10:25:35 2011 -0700
@@ -11,6 +11,41 @@
 #include "ResourceManager.h"
 
 /*
+ * Tower
+ */
+struct Tower
+{
+	/*
+	 * Type
+	 */
+	uint32 Type;
+
+	/*
+	 * Height
+	 */
+	uint32 Height;
+
+	/*
+	 * State
+	 */
+	uint32 State;
+
+	/*
+	 * User
+	 */
+	uint32 User;
+
+public:
+
+	/*
+	 * Tower
+	 */
+	Tower() : Type(0), Height(1), State(0), User(0)
+	{
+	}
+};
+
+/*
  * Environment
  */
 class Environment