feat: add standalone client with FIFO command interface

This commit is contained in:
Loic Coenen
2026-05-13 19:48:53 +00:00
committed by Loic Coenen (aider)
parent 5ad831f50c
commit 998406616a
5 changed files with 127 additions and 1499 deletions

View File

@@ -1,18 +1,8 @@
#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_init(void);
void tui_run(void);
void tui_cleanup(void);
#endif // TUI_H
#endif