mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-01-30 10:05:11 +00:00
Add class for Audio/Graphics/System/Controls Screen
This commit is contained in:
parent
5c7cdf276a
commit
031d921160
@ -77,7 +77,33 @@ public:
|
||||
void render();
|
||||
};
|
||||
|
||||
class AudioScreen : public Screen
|
||||
{
|
||||
public:
|
||||
void update(InputState &input);
|
||||
void render();
|
||||
};
|
||||
|
||||
class GraphicsScreen : public Screen
|
||||
{
|
||||
public:
|
||||
void update(InputState &input);
|
||||
void render();
|
||||
};
|
||||
|
||||
class SystemScreen : public Screen
|
||||
{
|
||||
public:
|
||||
void update(InputState &input);
|
||||
void render();
|
||||
};
|
||||
|
||||
class ControlsScreen : public Screen
|
||||
{
|
||||
public:
|
||||
void update(InputState &input);
|
||||
void render();
|
||||
};
|
||||
struct FileSelectScreenOptions {
|
||||
const char* filter; // Enforced extension filter. Case insensitive, extensions separated by ":".
|
||||
bool allowChooseDirectory;
|
||||
|
Loading…
x
Reference in New Issue
Block a user