diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2025-10-11 01:45:08 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2025-10-11 01:45:08 -0400 |
| commit | ba3a68a4f73f6653b1e1b095abc08234dedc504d (patch) | |
| tree | c7f12e78cd6d97c7f559811064865bc8a6eeeb9f /graphics.h | |
| parent | f23baade916e844b6b6c9714e6b5d81020f6ba57 (diff) | |
added graphics.h
Diffstat (limited to 'graphics.h')
| -rw-r--r-- | graphics.h | 9 |
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 |
