19 lines
257 B
C
19 lines
257 B
C
#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
|