Tidying
This commit is contained in:
@@ -13,7 +13,9 @@ namespace Bloom::Events
|
||||
static constexpr EventType type = EventType::DEBUG_SERVER_THREAD_STATE_CHANGED;
|
||||
static inline const std::string name = "DebugServerThreadStateChanged";
|
||||
|
||||
explicit DebugServerThreadStateChanged(ThreadState state): state(state) {};
|
||||
explicit DebugServerThreadStateChanged(ThreadState state)
|
||||
: state(state)
|
||||
{};
|
||||
|
||||
[[nodiscard]] EventType getType() const override {
|
||||
return DebugServerThreadStateChanged::type;
|
||||
|
||||
@@ -13,7 +13,9 @@ namespace Bloom::Events
|
||||
static constexpr EventType type = EventType::TARGET_CONTROLLER_THREAD_STATE_CHANGED;
|
||||
static inline const std::string name = "TargetControllerThreadStateChanged";
|
||||
|
||||
explicit TargetControllerThreadStateChanged(ThreadState state): state(state) {};
|
||||
explicit TargetControllerThreadStateChanged(ThreadState state)
|
||||
: state(state)
|
||||
{};
|
||||
|
||||
[[nodiscard]] EventType getType() const override {
|
||||
return TargetControllerThreadStateChanged::type;
|
||||
|
||||
Reference in New Issue
Block a user