summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2ColdTableDef.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/T2DLL/T2ColdTableDef.h')
-rw-r--r--src/T2DLL/T2ColdTableDef.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/T2DLL/T2ColdTableDef.h b/src/T2DLL/T2ColdTableDef.h
new file mode 100644
index 0000000..087402a
--- /dev/null
+++ b/src/T2DLL/T2ColdTableDef.h
@@ -0,0 +1,13 @@
+#pragma once
+#include "common.h"
+
+class T2ColdTableDef {
+public:
+ T2ColdTableDef(CResFile &inResFile);
+ virtual ~T2ColdTableDef();
+ unsigned int GetDenomi(unsigned int inA, unsigned int inB) const;
+
+protected:
+ unsigned int mVar;
+ unsigned int mEntries[12];
+};