move engine to engine/

This commit is contained in:
Loic Coenen
2026-05-13 17:55:59 +00:00
parent 10d0269a5a
commit f3dde6b668
38 changed files with 3141 additions and 0 deletions

18
client/src/tui.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef TUI_H
#define TUI_H
#include "engine.h"
#include "dispatcher.h"
#define NUM_GRIDS 8
// 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