mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 15:20:58 -04:00
b5f05db182
Co-authored-by: Elijah Thomas <42302100+elijah-thomas774@users.noreply.github.com>
21 lines
394 B
C++
21 lines
394 B
C++
#ifndef D_SYS_H
|
|
#define D_SYS_H
|
|
|
|
#include "common.h"
|
|
#include "egg/core/eggHeap.h"
|
|
#include "nw4r/ut/ut_Color.h"
|
|
|
|
class dSys_c {
|
|
public:
|
|
/* Frame rate values: 1 - 60fps, 2 - 30fps */
|
|
static void setFrameRate(u8);
|
|
static u8 getFrameRate();
|
|
|
|
static void setClearColor(nw4r::ut::Color clr);
|
|
|
|
static EGG::Heap *ms_RootHeapMem1;
|
|
static EGG::Heap *ms_RootHeapMem2;
|
|
};
|
|
|
|
#endif
|