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

17 lines
307 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
#include "Event.hpp"
namespace Bloom::Events
{
class ShutdownDebugServer: public Event
{
public:
static inline const std::string name = "ShutdownDebugServer";
std::string getName() const override {
return ShutdownDebugServer::name;
}
};
}