#ifndef TUI_H #define TUI_H #include "engine.h" // Initialize TUI void tui_init(Engine *engine); // Run the TUI main loop void tui_run(Engine *engine); // Cleanup TUI void tui_cleanup(void); // Handle command mode input (after pressing ':') void tui_handle_command_mode(Engine *engine); #endif // TUI_H