chore(console): improve structure for event-related handlers

This commit is contained in:
fallenoak 2025-09-23 10:45:19 -07:00
parent 555ebf726c
commit 1262a76331
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
4 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
#include "console/Handlers.hpp"
#include "console/Console.hpp"
#include "console/EventHandlers.hpp"
#include "console/Screen.hpp"
#include "event/Event.hpp"
#include <cstdint>

View File

@ -0,0 +1,6 @@
#ifndef CONSOLE_EVENT_HANDLERS_HPP
#define CONSOLE_EVENT_HANDLERS_HPP
void RegisterHandlers();
#endif

View File

@ -1,6 +0,0 @@
#ifndef CONSOLE_HANDLERS_HPP
#define CONSOLE_HANDLERS_HPP
void RegisterHandlers();
#endif

View File

@ -1,6 +1,6 @@
#include "console/Screen.hpp"
#include "console/Console.hpp"
#include "console/Handlers.hpp"
#include "console/EventHandlers.hpp"
#include "console/Types.hpp"
#include "gx/Buffer.hpp"
#include "gx/Coordinate.hpp"