#pragma once #include #include "Event.hpp" #include "TargetExecutionStopped.hpp" namespace Bloom::Events { class StopTargetExecution: public Event { public: using TargetControllerResponseType = TargetExecutionStopped; static inline EventType type = EventType::STOP_TARGET_EXECUTION; static inline const std::string name = "StopTargetExecution"; [[nodiscard]] EventType getType() const override { return StopTargetExecution::type; } [[nodiscard]] std::string getName() const override { return StopTargetExecution::name; } }; }