24 lines
491 B
C++
24 lines
491 B
C++
|
|
#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;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|