13 lines
187 B
C++
13 lines
187 B
C++
#pragma once
|
|
|
|
namespace Stand
|
|
{
|
|
class CommandNoBeast : public CommandToggle
|
|
{
|
|
public:
|
|
explicit CommandNoBeast(CommandList* const parent);
|
|
|
|
void onChange(Click& click) final;
|
|
};
|
|
}
|