REXM: Updated new examples requried files

This commit is contained in:
Ray
2025-10-02 13:16:00 +02:00
parent a0a0d4d5ad
commit 377853bb32
16 changed files with 2437 additions and 15 deletions

View File

@ -11,7 +11,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
* Copyright (c) 2025-2025 Zero (@zerohorsepower)
* Copyright (c) 2025 Zero (@zerohorsepower)
*
********************************************************************************************/

View File

@ -1,10 +1,10 @@
/*******************************************************************************************
*
* raylib [shapes] example - dashed line drawing
* raylib [shapes] example - dashed line
*
* Example complexity rating: [★☆☆☆] 1/4
*
* Example originally created with raylib 2.5, last time updated with raylib 2.5
* Example originally created with raylib 5.5, last time updated with raylib 5.5
*
* Example contributed by Luís Almeida (@luis605)
*
@ -29,7 +29,7 @@ int main(void)
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - interactive dashed line");
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - dashed line");
// Line Properties
Vector2 lineStartPosition = { 20.0f, 50.0f };