From 33e27b2c2796aa98fb7e48079187b01a2e59d72a Mon Sep 17 00:00:00 2001 From: Louie S Date: Fri, 30 Jun 2023 10:57:04 -0700 Subject: draw skeleton --- src/draw.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/draw.h (limited to 'src/draw.h') diff --git a/src/draw.h b/src/draw.h new file mode 100644 index 0000000..8a39605 --- /dev/null +++ b/src/draw.h @@ -0,0 +1,10 @@ +#ifndef DRAW_H +#define DRAW_H + +// initialize the tui +void tui_init(); + +// destroy the tui +void tui_end(); + +#endif -- cgit