mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-08 12:28:15 +00:00
reviewed ALL non-external files to follow raylib's convention of no spaces around / or * (#5153)
This commit is contained in:
@@ -18,8 +18,8 @@ int main() {
|
||||
SetTargetFPS(60);
|
||||
|
||||
while (!WindowShouldClose()) {
|
||||
cam.position.x = sin(GetTime()) * 10.0f;
|
||||
cam.position.z = cos(GetTime()) * 10.0f;
|
||||
cam.position.x = sin(GetTime())*10.0f;
|
||||
cam.position.z = cos(GetTime())*10.0f;
|
||||
|
||||
BeginDrawing();
|
||||
ClearBackground(RAYWHITE);
|
||||
@@ -35,4 +35,4 @@ int main() {
|
||||
|
||||
CloseWindow();
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user