Files
Stand/Stand/CommandDivider.hpp
expvintl ce19babcf4 init
2024-10-16 11:20:42 +08:00

19 lines
347 B
C++

#pragma once
#include "CommandPhysical.hpp"
namespace Stand
{
class CommandDivider : public CommandPhysical
{
public:
inline static bool selectable = false;
explicit CommandDivider(CommandList* const parent, Label&& menu_name);
void preDetach() final;
void onFocus(ThreadContext thread_context, Direction momentum) override;
};
}