2022-04-18 18:50:23 +01:00
|
|
|
#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";
|
2022-04-18 18:50:23 +01:00
|
|
|
|
|
|
|
|
[[nodiscard]] CommandType getType() const override {
|
|
|
|
|
return StopTargetExecution::type;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|