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

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

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

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