move engine to engine/
This commit is contained in:
1549
client/src/tui.c
Normal file
1549
client/src/tui.c
Normal file
File diff suppressed because it is too large
Load Diff
18
client/src/tui.h
Normal file
18
client/src/tui.h
Normal 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
|
||||
Reference in New Issue
Block a user