summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2ObjectArray.cpp
blob: e6a9e51cceb5b4b79ac01e4d6c0ca32ef255d868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "T2ObjectArray.h"

T2ObjectArray::T2ObjectArray(unsigned int startID) {
	mStartID = startID;
}

/*virtual*/ T2ObjectArray::~T2ObjectArray() {
}

/*virtual*/ T2Object* T2ObjectArray::GetIndexObject(int) {
	return NULL;
}