Basic 3D rendering

This commit is contained in:
var
2026-04-01 00:13:07 -05:00
parent 7b40b8702c
commit b4768a885b
14 changed files with 638 additions and 23 deletions

8
src/render.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
#include <stdbool.h>
#include "game.h"
bool Render_Init(GameState *gs);
void Render_Destroy(GameState *gs);
void Render_Draw(GameState *gs);