Initial commit

This commit is contained in:
2024-10-11 22:21:32 +02:00
commit 1bdd01e9b2
38 changed files with 11363 additions and 0 deletions

9
renderer/vertex.jai Normal file
View File

@@ -0,0 +1,9 @@
Textured_Vert :: struct {
position: Vector2;
texcoord: Vector2;
}
Textured_Vert_3D :: struct {
position: Vector3;
texcoord: Vector2;
}