aboutsummaryrefslogtreecommitdiff
path: root/graphics.h
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-10-11 01:45:08 -0400
committerJack Jamison <jackqjamison@gmail.com>2025-10-11 01:45:08 -0400
commitba3a68a4f73f6653b1e1b095abc08234dedc504d (patch)
treec7f12e78cd6d97c7f559811064865bc8a6eeeb9f /graphics.h
parentf23baade916e844b6b6c9714e6b5d81020f6ba57 (diff)
added graphics.h
Diffstat (limited to 'graphics.h')
-rw-r--r--graphics.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/graphics.h b/graphics.h
new file mode 100644
index 0000000..8889bf7
--- /dev/null
+++ b/graphics.h
@@ -0,0 +1,9 @@
+#ifndef GRAPHICS_H_
+#define GRAPHICS_H_
+
+#include "state.h"
+
+bool init_gl(client_state* state);
+void render_frame(client_state* state);
+
+#endif