Added Flecs, license comments and created the project outline.
This commit is contained in:
parent
d716b6cea7
commit
7be714b81f
16 changed files with 127682 additions and 5 deletions
16
rendering/renderer.h
Normal file
16
rendering/renderer.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue