Update core_3d_fps_controller.c

This commit is contained in:
Agnis Aldiņš "NeZvērs 2025-06-23 13:32:08 +03:00
parent 4d5a56a5f8
commit 4233544670

View File

@ -356,5 +356,7 @@ void DrawLevel()
towerPos.x *= -1; towerPos.x *= -1;
DrawCubeV(towerPos, towerSize, towerColor); DrawCubeV(towerPos, towerSize, towerColor);
DrawCubeWiresV(towerPos, towerSize, DARKBLUE); DrawCubeWiresV(towerPos, towerSize, DARKBLUE);
}
// Red sun
DrawSphere((Vector3) { 300.f, 300.f, 0.f }, 100.f, (Color) { 255, 0, 0, 255 });
}