gearlib-cpp/include/gearlib/init.h

12 lines
206 B
C
Raw Normal View History

2024-05-16 22:37:46 +12:00
#ifndef __INIT_H__
#define __INIT_H__
#include <gearlib/opengl.h>
typedef GLFWwindow* Window;
void init_gl(int major, int minor);
Window create_window(int width, int height, const char* title);
#endif