Files
BloomPatched/src/TargetController/Commands/StopTargetExecution.hpp

18 lines
425 B
C++
Raw Normal View History

#pragma once
#include "Command.hpp"
namespace Bloom::TargetController::Commands
{
class StopTargetExecution: public Command
{
public:
static constexpr CommandType type = CommandType::STOP_TARGET_EXECUTION;
2022-10-12 21:26:09 +01:00
static const inline std::string name = "StopTargetExecution";
[[nodiscard]] CommandType getType() const override {
return StopTargetExecution::type;
}
};
}