mirror of
https://github.com/GaryOderNichts/DRXUtil.git
synced 2024-12-04 05:44:14 +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;
|
||
|
};
|