Files
lunarwm/src/RayExt.h
Slendi f74937bb6a Initial commit
Signed-off-by: Slendi <slendi@socopon.com>
2025-10-01 20:29:18 +03:00

19 lines
313 B
C

#ifndef RAYEXT_H
#define RAYEXT_H
#include <raylib.h>
typedef struct {
bool ok;
Model cube;
Shader shader;
TextureCubemap cubemap;
} Skybox;
void Skybox_init(Skybox *skybox, char const *fp);
void Skybox_destroy(Skybox *skybox);
void Skybox_draw(Skybox const skybox, Vector3 position);
#endif // RAYEXT_H