From e41af6679dae3f4c69b46962a6bf1a1f81bee600 Mon Sep 17 00:00:00 2001 From: kartofen Date: Fri, 7 Oct 2022 23:26:38 +0300 Subject: kind of working but not really --- src/display.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/display.h (limited to 'src/display.h') diff --git a/src/display.h b/src/display.h new file mode 100644 index 0000000..088feb7 --- /dev/null +++ b/src/display.h @@ -0,0 +1,19 @@ +#ifndef DISPLAY_H +#define DISPLAY_H + +typedef struct dspl_createinfo { + int width; + int height; + char *name; + int fps; + void (*update_func)(); +} dspl_createinfo; + +void dspl_create(dspl_createinfo info); +void dspl_start(); +void dspl_destroy(); + +void dspl_draw_line(int x1, int y1, int x2, int y2, int c); +void dspl_draw_circle(int cx, int cy, int r); + +#endif -- cgit v1.2.3