diff options
Diffstat (limited to 'src/render.h')
| -rw-r--r-- | src/render.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/render.h b/src/render.h index 7e066c4..d1fe7ab 100644 --- a/src/render.h +++ b/src/render.h @@ -1,10 +1,18 @@ #ifndef GAME_RENDER_H #define GAME_RENDER_H +#include <GL/gl.h> +#include <GL/glu.h> #include "raylib.h" #include "rlgl.h" #include "world.h" +GLuint +customLoadTextureN64(char *spritePath); + +void +renderSkybox(GLuint *textures, int m, int n, Camera3D camera); + void renderWorld(World* world, Camera camera); |
