Files
BloomPatched/src/EventManager/Events/ShutdownTargetController.hpp
2022-10-12 21:26:09 +01:00

24 lines
562 B
C++

#pragma once
#include <string>
#include "Event.hpp"
namespace Bloom::Events
{
class ShutdownTargetController: public Event
{
public:
static constexpr EventType type = EventType::SHUTDOWN_TARGET_CONTROLLER;
static const inline std::string name = "ShutdownTargetControllerEvent";
[[nodiscard]] EventType getType() const override {
return ShutdownTargetController::type;
}
[[nodiscard]] std::string getName() const override {
return ShutdownTargetController::name;
}
};
}