gearlib/include/init.h
2024-05-03 11:18:50 +12:00

12 lines
198 B
C

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