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

26 lines
632 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"
namespace Bloom::Events
{
class TargetControllerErrorOccurred: public Event
{
public:
static inline EventType type = EventType::TARGET_CONTROLLER_ERROR_OCCURRED;
2021-04-04 21:04:12 +01:00
static inline const std::string name = "TargetControllerErrorOccurred";
TargetControllerErrorOccurred() = default;
[[nodiscard]] EventType getType() const override {
return TargetControllerErrorOccurred::type;
}
[[nodiscard]] std::string getName() const override {
2021-04-04 21:04:12 +01:00
return TargetControllerErrorOccurred::name;
}
};
}