21 lines
408 B
C++
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;
|
|
}
|
|
};
|
|
}
|