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