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

16 lines
275 B
C++

#pragma once
#include "CommandToggleRegular.hpp"
namespace Stand
{
class CommandChatSing : public CommandToggleRegular
{
public:
explicit CommandChatSing(CommandList* parent);
void onEnableInner(Click& click) final;
void onDisableInner(Click& click) final;
};
}