diff options
| author | robojumper <robojumper@gmail.com> | 2025-07-27 16:45:04 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2025-07-27 16:45:04 +0200 |
| commit | e4e4be4fceb93720fd99d604759cf0e362cc2f12 (patch) | |
| tree | 30572ef1df20e5521845ce1b2dc6e84e8a6b9518 /include/d/d_sys.h | |
| parent | 4ec5128eb4f6cdc8985f83f4c8b540115daf47fb (diff) | |
d_gfx mostly OK
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 |
