Files
BloomPatched/src/EventManager/Events/DebugSessionStarted.hpp
2021-08-19 22:06:59 +01:00

24 lines
529 B
C++

#pragma once
#include <string>
#include "Event.hpp"
namespace Bloom::Events
{
class DebugSessionStarted: public Event
{
public:
static inline EventType type = EventType::DEBUG_SESSION_STARTED;
static inline const std::string name = "DebugSessionStarted";
[[nodiscard]] EventType getType() const override {
return DebugSessionStarted::type;
}
[[nodiscard]] std::string getName() const override {
return DebugSessionStarted::name;
}
};
}