Refactor removing extra space and add break line for { (#5533)

Co-authored-by: maiconpintoabreu <maicon@thinkpad02.exads.com>
This commit is contained in:
Maicon Santana
2026-02-05 14:10:55 +00:00
committed by GitHub
parent d4f636151b
commit f43e049444
18 changed files with 35 additions and 23 deletions

View File

@ -1,7 +1,8 @@
#include <math.h>
#include "raylib.h"
int main() {
int main()
{
int screenWidth = 800;
int screenHeight = 450;
@ -17,7 +18,8 @@ int main() {
SetTargetFPS(60);
while (!WindowShouldClose()) {
while (!WindowShouldClose())
{
cam.position.x = sin(GetTime())*10.0f;
cam.position.z = cos(GetTime())*10.0f;