diff --git a/examples/README.md b/examples/README.md
index f911d04d8..a1c91ba4c 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -98,7 +98,7 @@ Examples using raylib models functionality, including models loading/generation
| ## | example | image | developer | new |
|----|----------|--------|:----------:|:---:|
-| 65 | [models_animation](examples/models/models_animation.c) |
| [culacant](https://github.com/culacant) | |
+| 65 | [models_animation](examples/models/models_animation.c) |
| [culacant](https://github.com/culacant) | ⭐️ |
| 66 | [models_billboard](examples/models/models_billboard.c) |
| ray | |
| 67 | [models_box_collisions](examples/models/models_box_collisions.c) |
| ray | |
| 68 | [models_cubicmap](examples/models/models_cubicmap.c) |
| ray | |
@@ -123,8 +123,6 @@ Examples using raylib shaders functionality, including shaders loading, paramete
| ## | example | image | developer | new |
|----|----------|--------|:----------:|:---:|
-| ## | example | image | contributor | recent |
-|----|-----------------------------------------------------------------------|-------------------------------------------------------------------------------------------|----------------------------------------------|--------|
| 83 | [shaders_basic_lighting](examples/shaders/shaders_basic_lighting.c) |
| [Chris Camacho](https://github.com/codifies) | ⭐️ |
| 84 | [shaders_model_shader](examples/shaders/shaders_model_shader.c) |
| ray | |
| 85 | [shaders_shapes_textures](examples/shaders/shaders_shapes_textures.c) |
| ray | |
@@ -138,3 +136,27 @@ Examples using raylib shaders functionality, including shaders loading, paramete
| 93 | [shaders_eratosthenes](examples/shaders/shaders_eratosthenes.c) |
| [ProfJski](https://github.com/ProfJski) | ⭐️ |
| 94 | [shaders_fog](examples/shaders/shaders_fog.c) |
| [Chris Camacho](https://github.com/codifies) | ⭐️ |
| 95 | [shaders_simple_mask](examples/shaders/shaders_simple_mask.c) |
| [Chris Camacho](https://github.com/codifies) | ⭐️ |
+
+### category: audio
+
+Examples using raylib audio functionality, including sound/music loading and playing. This functionality is provided by raylib [raudio](../src/raudio.c) module. Note this module can be used standalone independently of raylib, check [raudio_standalone](examples/others/raudio_standalone.c) example.
+
+| ## | example | image | developer | new |
+|----|----------|--------|:----------:|:---:|
+| 96 | [audio_module_playing](examples/audio/audio_module_playing.c) |
| ray | |
+| 97 | [audio_music_stream](examples/audio/audio_music_stream.c) |
| ray | |
+| 98 | [audio_raw_stream](examples/audio/audio_raw_stream.c) |
| ray | |
+| 99 | [audio_sound_loading](examples/audio/audio_sound_loading.c) |
| ray | |
+| 100 | [audio_multichannel_sound](examples/audio/audio_multichannel_sound.c) |
| [Chris Camacho](https://github.com/codifies) | ⭐️ |
+
+### category: physics
+
+Examples showing physics functionality with raylib. This functionality is provided by [physac](https://github.com/victorfisac/Physac) library, included with raylib [sources](../src/physac.h). Note this library is not linked with raylib by default, it should be manually included in user code.
+
+| ## | example | image | developer | new |
+|----|----------|--------|:----------:|:---:|
+| 101 | [physics_demo](examples/physics/physics_demo.c) |
| [Victor Fisac](https://github.com/victorfisac) | |
+| 102 | [physics_friction](examples/physics/physics_friction.c) |
| [Victor Fisac](https://github.com/victorfisac) | |
+| 103 | [physics_movement](examples/physics/physics_movement.c) |
| [Victor Fisac](https://github.com/victorfisac) | |
+| 104 | [physics_restitution](examples/physics/physics_restitution.c) |
| [Victor Fisac](https://github.com/victorfisac) | |
+| 105 | [physics_shatter](examples/physics/physics_shatter.c) |
| [Victor Fisac](https://github.com/victorfisac) | |