16 lines
277 B
C++
16 lines
277 B
C++
#pragma once
|
|
|
|
#include "CommandToggle.hpp"
|
|
|
|
namespace Stand
|
|
{
|
|
class CommandScaleSpeed : public CommandToggle
|
|
{
|
|
public:
|
|
explicit CommandScaleSpeed(CommandList* const parent)
|
|
: CommandToggle(parent, LOC("SCLESPD"), { CMDNAME("scalespeed") }, NOLABEL, true)
|
|
{
|
|
}
|
|
};
|
|
}
|