gearlib/include/init.h
2024-04-29 22:41:13 +12:00

9 lines
168 B
C

#ifndef __INIT_H__
#define __INIT_H__
#include <types.h>
void init_gl(int major, int minor);
Window create_window(int width, int height, const char* title);
#endif