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

26 lines
546 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
#include <src/Helpers/Thread.hpp>
#include "Event.hpp"
namespace Bloom::Events
{
class DebugServerStateChanged: public Event
{
private:
ThreadState state;
public:
DebugServerStateChanged(ThreadState state) : state(state) {};
static inline const std::string name = "DebugServerStateChanged";
std::string getName() const override {
return DebugServerStateChanged::name;
}
ThreadState getState() const {
return this->state;
}
};
}