#ifndef T2DLL_T2COLDTABLEDEF_H #define T2DLL_T2COLDTABLEDEF_H #include "../common.h" class T2ColdTableDef { public: T2ColdTableDef(CResFile &inResFile); virtual ~T2ColdTableDef(); unsigned int GetDenomi(unsigned int inGameLevel, unsigned int inMonth) const; protected: unsigned int mMinimumGameLevel; unsigned int mEntries[12]; }; #endif