diff options
Diffstat (limited to 'include/d/d_sys.h')
| -rw-r--r-- | include/d/d_sys.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/include/d/d_sys.h b/include/d/d_sys.h index a9d6ff9c..0f58b410 100644 --- a/include/d/d_sys.h +++ b/include/d/d_sys.h @@ -2,14 +2,18 @@ #define D_SYS_H #include "common.h" -#include "m/m_color.h" +#include "egg/core/eggHeap.h" +#include "nw4r/ut/ut_Color.h" -namespace dSys { +class dSys_c { +public: + static void setFrameRate(u8); + static u8 getFrameRate(); -void setFrameRate(u32); -u8 getFrameRate(); -void setClearColor(mColor clr); + static void setClearColor(nw4r::ut::Color clr); -} // namespace dSys_c + static EGG::Heap *ms_RootHeapMem1; + static EGG::Heap *ms_RootHeapMem2; +}; #endif |
