Files
jack-looper/Let's craft the blocks.tui.h
Loic Coenen 4573eb0201 feat: add ncurses-based TUI frontend with 8x8 clip grid and keyboard controls
Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
2026-05-01 09:48:59 +00:00

16 lines
212 B
C

#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