REVIEWED: New examples on VS project

This commit is contained in:
Ray
2025-10-15 19:59:28 +02:00
parent 4ba92f8962
commit 8e052b81b4
20 changed files with 3098 additions and 76 deletions

View File

@@ -31,7 +31,7 @@ int main(void)
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - Draw a mouse trail");
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - mouse trail");
// Array to store the history of mouse positions (our fixed-size queue)
Vector2 trailPositions[MAX_TRAIL_LENGTH] = { 0 };