mirror of
https://github.com/GaryOderNichts/DRXUtil.git
synced 2024-12-03 13:24:16 +01:00
20 lines
276 B
C++
20 lines
276 B
C++
#pragma once
|
|
|
|
#include "Screen.hpp"
|
|
|
|
class AboutScreen : public Screen
|
|
{
|
|
public:
|
|
AboutScreen();
|
|
virtual ~AboutScreen();
|
|
|
|
void Draw();
|
|
|
|
bool Update(VPADStatus& input);
|
|
|
|
private:
|
|
ScreenList mCreditList;
|
|
ScreenList mFontList;
|
|
ScreenList mLinkList;
|
|
};
|