diff --git a/examples/Makefile b/examples/Makefile
index 6e2853edb..72f61242a 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -566,7 +566,8 @@ SHAPES = \
shapes/shapes_splines_drawing \
shapes/shapes_top_down_lights \
shapes/shapes_triangle_strip \
- shapes/shapes_vector_angle
+ shapes/shapes_vector_angle \
+ shapes/shapes_simple_particles
TEXTURES = \
textures/textures_background_scrolling \
diff --git a/examples/Makefile.Web b/examples/Makefile.Web
index f1662a301..1a64ab4ea 100644
--- a/examples/Makefile.Web
+++ b/examples/Makefile.Web
@@ -566,7 +566,8 @@ SHAPES = \
shapes/shapes_splines_drawing \
shapes/shapes_top_down_lights \
shapes/shapes_triangle_strip \
- shapes/shapes_vector_angle
+ shapes/shapes_vector_angle \
+ shapes/shapes_simple_particles
TEXTURES = \
textures/textures_background_scrolling \
@@ -895,6 +896,9 @@ shapes/shapes_triangle_strip: shapes/shapes_triangle_strip.c
shapes/shapes_vector_angle: shapes/shapes_vector_angle.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
+shapes/shapes_simple_particles: shapes/shapes_simple_particles.c
+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
+
# Compile TEXTURES examples
textures/textures_background_scrolling: textures/textures_background_scrolling.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
diff --git a/examples/README.md b/examples/README.md
index 441c5a368..d2b96854e 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -17,7 +17,7 @@ You may find it easier to use than other toolchains, especially when it comes to
- `zig build [module]` to compile all examples for a module (e.g. `zig build core`)
- `zig build [example]` to compile _and run_ a particular example (e.g. `zig build core_basic_window`)
-## EXAMPLES COLLECTION [TOTAL: 175]
+## EXAMPLES COLLECTION [TOTAL: 176]
### category: core [40]
@@ -66,7 +66,7 @@ Examples using raylib[core](../src/rcore.c) platform functionality like window c
| [core_undo_redo](core/core_undo_redo.c) |
| ⭐⭐⭐☆ | 5.5 | 5.6 | [Ramon Santamaria](https://github.com/raysan5) |
| [core_input_actions](core/core_input_actions.c) |
| ⭐⭐☆☆ | 5.5 | 5.6 | [Jett](https://github.com/JettMonstersGoBoom) |
-### category: shapes [26]
+### category: shapes [27]
Examples using raylib shapes drawing functionality, provided by raylib [shapes](../src/rshapes.c) module.
@@ -98,6 +98,7 @@ Examples using raylib shapes drawing functionality, provided by raylib [shapes](
| [shapes_triangle_strip](shapes/shapes_triangle_strip.c) |
| ⭐⭐☆☆ | 5.6-dev | 5.6-dev | [Jopestpe](https://github.com/jopestpe) |
| [shapes_vector_angle](shapes/shapes_vector_angle.c) |
| ⭐⭐☆☆ | 1.0 | 5.0 | [Ramon Santamaria](https://github.com/raysan5) |
| [shapes_kaleidoscope](shapes/shapes_kaleidoscope.c) |
| ⭐⭐☆☆ | 5.5 | 5.6 | [Hugo ARNAL](https://github.com/hugoarnal) |
+| [shapes_simple_particles](shapes/shapes_simple_particles.c) |
| ⭐☆☆☆ | 5.6 | 5.6 | [Aanjishnu Bhattacharyya](https://github.com/NimComPoo-04) |
### category: textures [26]
diff --git a/examples/examples_list.txt b/examples/examples_list.txt
index 81a61fb97..89dc51d50 100644
--- a/examples/examples_list.txt
+++ b/examples/examples_list.txt
@@ -182,3 +182,4 @@ others;raylib_opengl_interop;★★★★;3.8;4.0;2021;2025;"Stephan Soller";@ar
others;embedded_files_loading;★★☆☆;3.0;3.5;2020;2025;"Kristian Holmgren";@defutura
others;web_basic_window;★☆☆☆;5.6-dev;5.6-dev;2014;2025;"Ramon Santamaria";@raysan5
shapes;shapes_kaleidoscope;★★☆☆;5.5;5.6;2025;2025;"Hugo ARNAL";@hugoarnal
+shapes;shapes_simple_particles;★☆☆☆;5.6;5.6;2025;2025;"Aanjishnu Bhattacharyya";@NimComPoo-04