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

22 lines
478 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
#include "Event.hpp"
2021-04-06 02:10:14 +01:00
#include "src/Exceptions/Exception.hpp"
2021-04-04 21:04:12 +01:00
namespace Bloom::Events
{
class TargetControllerStopped: public Event
{
private:
bool stoppedAbruptly = false;
std::optional<Exceptions::Exception> caughtException;
public:
static inline const std::string name = "TargetControllerStoppedEvent";
std::string getName() const override {
return TargetControllerStopped::name;
}
};
}