Implemented ResetTaret handler in TargetController

This commit is contained in:
Nav
2022-04-08 22:14:01 +01:00
parent 42fd57cb6a
commit 1696d2dcbe
8 changed files with 70 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
#pragma once
#include <string>
#include "Event.hpp"
namespace Bloom::Events
{
class TargetReset: public Event
{
public:
static constexpr EventType type = EventType::TARGET_RESET;
static inline const std::string name = "TargetReset";
[[nodiscard]] EventType getType() const override {
return TargetReset::type;
}
[[nodiscard]] std::string getName() const override {
return TargetReset::name;
}
};
}