Files
BloomPatched/src/EventManager/Events/StopTargetExecution.hpp

27 lines
637 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
2021-05-25 21:50:17 +01:00
#include <string>
2021-04-04 21:04:12 +01:00
#include "Event.hpp"
#include "TargetExecutionStopped.hpp"
2021-04-04 21:04:12 +01:00
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;
}
2021-04-04 21:04:12 +01:00
[[nodiscard]] std::string getName() const override {
2021-04-04 21:04:12 +01:00
return StopTargetExecution::name;
}
};
}