gearlib/include/init.h

10 lines
168 B
C
Raw Normal View History

2024-04-29 22:41:13 +12:00
#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