feat: add ncurses-based TUI frontend with 8x8 clip grid and keyboard controls

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-01 09:48:59 +00:00
parent 9b1959e13d
commit 4573eb0201
5 changed files with 775 additions and 11 deletions

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