diff options
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/CObjectList.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/T2DLL/CObjectList.h b/src/T2DLL/CObjectList.h new file mode 100644 index 0000000..ed66dd1 --- /dev/null +++ b/src/T2DLL/CObjectList.h @@ -0,0 +1,10 @@ +#pragma once +#include "common.h" +#include "LArray.h" + +class DLL_EXPORT CObjectList : public LArray { +public: + CObjectList(); + virtual ~CObjectList(); + virtual void AllClear(); +}; |