feat: add tui.h header file

This commit is contained in:
Loic Coenen
2026-05-01 15:22:58 +00:00
committed by Loic Coenen (aider)
parent e405518942
commit 68ec0abb99

15
tui.h Normal file
View File

@@ -0,0 +1,15 @@
#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);
#endif // TUI_H