2022-04-08 22:14:01 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
#include "Event.hpp"
|
|
|
|
|
|
|
|
|
|
namespace Bloom::Events
|
|
|
|
|
{
|
|
|
|
|
class TargetReset: public Event
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static constexpr EventType type = EventType::TARGET_RESET;
|
2022-10-12 21:26:09 +01:00
|
|
|
static const inline std::string name = "TargetReset";
|
2022-04-08 22:14:01 +01:00
|
|
|
|
|
|
|
|
[[nodiscard]] EventType getType() const override {
|
|
|
|
|
return TargetReset::type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[[nodiscard]] std::string getName() const override {
|
|
|
|
|
return TargetReset::name;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|