1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-08 23:23:38 +00:00
lovr/src/graphics/skybox.h
2017-03-11 01:37:00 -08:00

13 lines
201 B
C

#include "glfw.h"
#include "util.h"
#pragma once
typedef struct {
Ref ref;
GLuint texture;
} Skybox;
Skybox* lovrSkyboxCreate(void** data, size_t* size);
void lovrSkyboxDestroy(const Ref* ref);