summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2ObjectArray.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2ObjectArray.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/T2DLL/T2ObjectArray.cpp b/src/T2DLL/T2ObjectArray.cpp
new file mode 100644
index 0000000..e6a9e51
--- /dev/null
+++ b/src/T2DLL/T2ObjectArray.cpp
@@ -0,0 +1,12 @@
+#include "T2ObjectArray.h"
+
+T2ObjectArray::T2ObjectArray(unsigned int startID) {
+ mStartID = startID;
+}
+
+/*virtual*/ T2ObjectArray::~T2ObjectArray() {
+}
+
+/*virtual*/ T2Object* T2ObjectArray::GetIndexObject(int) {
+ return NULL;
+}