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

@@ -2,9 +2,9 @@
*
* raylib [shapes] example - pie chart
*
* Example complexity rating: [★☆☆] 2/4
* Example complexity rating: [★☆☆] 1/4
*
* Example originally created with raylib 5.6-dev, last time updated with raylib 5.6-dev
* Example originally created with raylib 5.5, last time updated with raylib 5.6
*
* Example contributed by Gideon Serfontein (@GideonSerf) and reviewed by Ramon Santamaria (@raysan5)
*
@@ -32,7 +32,7 @@ int main(void)
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - interactive pie chart");
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - pie chart");
#define MAX_SLICES 10
int sliceCount = 7;