Initial commit

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-06-29 15:57:38 +03:00
commit f74937bb6a
37 changed files with 7400 additions and 0 deletions

18
src/RayExt.h Normal file
View File

@@ -0,0 +1,18 @@
#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