mirror of
https://github.com/GaryOderNichts/DRXUtil.git
synced 2024-11-01 07:05:09 +01:00
21 lines
271 B
C++
21 lines
271 B
C++
#pragma once
|
|
|
|
#include "Screen.hpp"
|
|
|
|
class InfoScreen : public Screen
|
|
{
|
|
public:
|
|
InfoScreen();
|
|
virtual ~InfoScreen();
|
|
|
|
void Draw();
|
|
|
|
bool Update(VPADStatus& input);
|
|
|
|
private:
|
|
ScreenList mDRCList;
|
|
ScreenList mExtIdList;
|
|
|
|
ScreenList mDRHList;
|
|
};
|