summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2ObjectArrayList.h
blob: c66ba03f79b973295eaa2a09ab0fa50c71137ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef T2DLL_T2OBJECTARRAYLIST_H
#define T2DLL_T2OBJECTARRAYLIST_H
#include "../common.h"
#include "CObjectList.h"

class AFX_CLASS_EXPORT T2ObjectArrayList : public CObjectList {
public:
	T2ObjectArrayList();
	virtual ~T2ObjectArrayList();
	void AddObjectArray(T2ObjectArray* inArray);
	T2ObjectArray* GetObjectArrayAt(int inIndex);
};
#endif