mirror of
https://github.com/GaryOderNichts/WiiUIdent.git
synced 2024-11-16 21:29:23 +01:00
21 lines
315 B
C++
21 lines
315 B
C++
|
#pragma once
|
||
|
|
||
|
#include "Screen.hpp"
|
||
|
|
||
|
class GeneralScreen : public Screen
|
||
|
{
|
||
|
public:
|
||
|
GeneralScreen();
|
||
|
virtual ~GeneralScreen();
|
||
|
|
||
|
void Draw();
|
||
|
|
||
|
bool Update(VPADStatus& input);
|
||
|
|
||
|
private:
|
||
|
ScreenList sysIdentList;
|
||
|
ScreenList hardwareList;
|
||
|
ScreenList regionList;
|
||
|
ScreenList versionList;
|
||
|
};
|