diff options
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2TenantCEArray.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/T2DLL/T2TenantCEArray.h b/src/T2DLL/T2TenantCEArray.h new file mode 100644 index 0000000..71a00a7 --- /dev/null +++ b/src/T2DLL/T2TenantCEArray.h @@ -0,0 +1,13 @@ +#pragma once +#include "common.h" +#include "T2CrossEquipArray.h" + +class T2TenantCEArray : public T2CrossEquipArray { +public: + T2TenantCEArray(); + virtual ~T2TenantCEArray(); + unsigned int GetFloorID(int); + void SetFloorID(unsigned int); + + virtual DWORD GetCEClassID() { return 'TCEA'; } +}; |