mirror of
https://github.com/GaryOderNichts/WiiUIdent.git
synced 2024-11-16 13:19:23 +01:00
20 lines
273 B
C++
20 lines
273 B
C++
|
#pragma once
|
||
|
|
||
|
#include "Screen.hpp"
|
||
|
|
||
|
class AboutScreen : public Screen
|
||
|
{
|
||
|
public:
|
||
|
AboutScreen();
|
||
|
virtual ~AboutScreen();
|
||
|
|
||
|
void Draw();
|
||
|
|
||
|
bool Update(VPADStatus& input);
|
||
|
|
||
|
private:
|
||
|
ScreenList creditList;
|
||
|
ScreenList fontList;
|
||
|
ScreenList linkList;
|
||
|
};
|