blob: 7557307da28f158f54d741d92e56240b7ac42114 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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
|