DRXUtil/source/screens/AboutScreen.hpp

20 lines
276 B
C++
Raw Normal View History

2024-04-02 17:51:50 +02:00
#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;
};