#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; } }; }