20 lines
270 B
C++
20 lines
270 B
C++
#pragma once
|
|
|
|
#include "CommandTab.hpp"
|
|
|
|
namespace Stand
|
|
{
|
|
class CommandTabStand : public CommandTab
|
|
{
|
|
private:
|
|
CommandList* secret = nullptr;
|
|
|
|
public:
|
|
explicit CommandTabStand(CommandList* const parent);
|
|
|
|
void populate();
|
|
|
|
void onKonamiCodeEntered();
|
|
};
|
|
}
|