Files
BloomPatched/src/EventManager/Events/TargetControllerErrorOccurred.hpp
2021-08-19 22:06:59 +01:00

26 lines
632 B
C++

#pragma once
#include <string>
#include "Event.hpp"
namespace Bloom::Events
{
class TargetControllerErrorOccurred: public Event
{
public:
static inline EventType type = EventType::TARGET_CONTROLLER_ERROR_OCCURRED;
static inline const std::string name = "TargetControllerErrorOccurred";
TargetControllerErrorOccurred() = default;
[[nodiscard]] EventType getType() const override {
return TargetControllerErrorOccurred::type;
}
[[nodiscard]] std::string getName() const override {
return TargetControllerErrorOccurred::name;
}
};
}