From ba4c5cdce969791085c82481817178300ea2bc6d Mon Sep 17 00:00:00 2001 From: Armands Vagalis Date: Sat, 28 Mar 2026 13:10:52 +0200 Subject: [PATCH] Added gitignore --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 2121200..7b0e296 100644 --- a/main.cpp +++ b/main.cpp @@ -29,7 +29,7 @@ class Player: Entity { public: Player(Vector3 position) : Entity(position) { - camera.target = (Vector3){0.0f, 0.0f, 0.0f}; + camera.target = (Vector3){0.0f, 0.0f, 0.0F}; camera.up = (Vector3){0.0f, 1.0f, 0.0f}; camera.fovy = 60.0f; camera.projection = CAMERA_PERSPECTIVE;