blob: 03ab2a40f3872262147411f950a2377c874cc12f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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
|