WiiUIdent/source/screens/AboutScreen.hpp

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;
};