Files
BloomPatched/src/EventManager/Events/ReportTargetControllerState.hpp

29 lines
738 B
C++
Raw Normal View History

2021-05-30 16:52:32 +01:00
#pragma once
#include <string>
#include "Event.hpp"
#include "TargetControllerStateReported.hpp"
2021-05-30 16:52:32 +01:00
namespace Bloom::Events
{
class ReportTargetControllerState: public Event
{
public:
using TargetControllerResponseType = TargetControllerStateReported;
2021-12-25 21:01:58 +00:00
static constexpr EventType type = EventType::REPORT_TARGET_CONTROLLER_STATE;
static inline const std::string name = "ReportTargetControllerState";
2021-05-30 16:52:32 +01:00
ReportTargetControllerState() {};
[[nodiscard]] EventType getType() const override {
return ReportTargetControllerState::type;
}
2021-05-30 16:52:32 +01:00
[[nodiscard]] std::string getName() const override {
2021-05-30 16:52:32 +01:00
return ReportTargetControllerState::name;
}
};
}