mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 15:20:58 -04:00
16 lines
201 B
C++
16 lines
201 B
C++
#ifndef D_SYS_H
|
|
#define D_SYS_H
|
|
|
|
#include "common.h"
|
|
#include "m/m_color.h"
|
|
|
|
namespace dSys {
|
|
|
|
void setFrameRate(u32);
|
|
u8 getFrameRate();
|
|
void setClearColor(mColor clr);
|
|
|
|
} // namespace dSys_c
|
|
|
|
#endif
|