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

16 lines
306 B
C++

#pragma once
#include "CommandOnPlayer.hpp"
#include "CommandActionScript.hpp"
namespace Stand
{
class CommandPlayerCopyOutfit : public CommandOnPlayer<CommandActionScript>
{
public:
explicit CommandPlayerCopyOutfit(CommandList* const parent);
void onClickScriptThread(Click& click) final;
};
}