summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2ObjectArray.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2ObjectArray.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/T2DLL/T2ObjectArray.h b/src/T2DLL/T2ObjectArray.h
new file mode 100644
index 0000000..5c422da
--- /dev/null
+++ b/src/T2DLL/T2ObjectArray.h
@@ -0,0 +1,16 @@
+#pragma once
+#include "common.h"
+
+class DLL_EXPORT T2ObjectArray {
+public:
+ T2ObjectArray(unsigned int startID = 1);
+ virtual ~T2ObjectArray();
+ virtual T2Object* GetIndexObject(int);
+
+ unsigned int GetStartID() { return mStartID; }
+ virtual T2Object* FindUnusedObject() { return NULL; }
+ virtual void DispatchIdle(T2TowerDoc*, int) {}
+
+protected:
+ unsigned int mStartID;
+};