A 2D tile-based sandbox game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gl.h 104B

123456
  1. #ifdef __APPLE__
  2. #define GL_SILENCE_DEPRECATION
  3. #include <OpenGL/gl3.h>
  4. #else
  5. #include <GL/gl.h>
  6. #endif