Initial commit
This commit is contained in:
18
src/EventManager/Events/TargetControllerErrorOccurred.hpp
Normal file
18
src/EventManager/Events/TargetControllerErrorOccurred.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#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;
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user