TargetController suspension
This commit is contained in:
23
src/EventManager/Events/TargetControllerStateReported.hpp
Normal file
23
src/EventManager/Events/TargetControllerStateReported.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "Event.hpp"
|
||||
#include "src/TargetController/TargetControllerState.hpp"
|
||||
|
||||
namespace Bloom::Events
|
||||
{
|
||||
class TargetControllerStateReported: public Event
|
||||
{
|
||||
public:
|
||||
TargetControllerState state;
|
||||
|
||||
TargetControllerStateReported(TargetControllerState state): state(state) {};
|
||||
|
||||
static inline const std::string name = "TargetControllerStateReported";
|
||||
|
||||
std::string getName() const override {
|
||||
return TargetControllerStateReported::name;
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user