Files
BloomPatched/src/EventManager/Events/TargetControllerErrorOccurred.hpp
2021-05-25 21:57:59 +01:00

21 lines
408 B
C++

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