Added Flecs, license comments and created the project outline.

This commit is contained in:
Lorenzo Torres 2025-11-01 17:32:01 +01:00
parent d716b6cea7
commit 7be714b81f
16 changed files with 127682 additions and 5 deletions

16
rendering/renderer.h Normal file
View file

@ -0,0 +1,16 @@
// SPDX-License-Identifier: BSD-3-Clause
#ifndef RENDERER_H
#define RENDERER_H
#include "../types.h"
struct mesh {
usize index;
usize size;
};
struct mesh renderer_build_chunk_mesh();
void renderer_draw_mesh(struct mesh);
void renderer_draw_chunk(struct mesh);
#endif