NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
d_stage_timer.hpp
1#pragma once
2#include <types.h>
3
5public:
6 virtual ~dStageTimer_c() {}
7
8 int mTimeValue;
9
10 short convertToIGT() const {
11 return (mTimeValue + 4095) >> 12;
12 }
13
14 static dStageTimer_c *m_instance;
15};