mirror of
https://github.com/GaryOderNichts/WiiUIdent.git
synced 2024-11-16 13:19:23 +01:00
19 lines
249 B
C++
19 lines
249 B
C++
#pragma once
|
|
|
|
#include "Screen.hpp"
|
|
|
|
class StorageScreen : public Screen
|
|
{
|
|
public:
|
|
StorageScreen();
|
|
virtual ~StorageScreen();
|
|
|
|
void Draw();
|
|
|
|
bool Update(VPADStatus& input);
|
|
|
|
private:
|
|
ScreenList mlcList;
|
|
ScreenList sdList;
|
|
};
|