From e5ff8ce8d0404b540ef3112876720d95039f86a6 Mon Sep 17 00:00:00 2001 From: CassieLoYan <66849141+CassieLoYan@users.noreply.github.com> Date: Mon, 19 Jul 2021 12:58:34 -0300 Subject: [PATCH] Fixed broken link for the easings module --- raylib-architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib-architecture.md b/raylib-architecture.md index c55fd78..5e61b72 100644 --- a/raylib-architecture.md +++ b/raylib-architecture.md @@ -18,7 +18,7 @@ Beyond the seven main modules that are described above, there is a small collect - [`camera`](https://github.com/raysan5/raylib/blob/master/src/camera.h): 3D Camera system (free, 1st person, 3rd person, custom). - [`gestures`](https://github.com/raysan5/raylib/blob/master/src/gestures.h): Touch gesture detection and processing (Tap, Swipe, Drag, Pinch). - [`raygui`](https://github.com/raysan5/raygui): Simple IMGUI system with several controls for tools development. - - [`easings`](https://github.com/raysan5/raylib/blob/master/src/easings.h): Easing functions for animations (based on [Robert Penner](http://robertpenner.com/easing/) implementation). + - [`easings`](https://github.com/raysan5/raylib/blob/master/src/extras/easings.h): Easing functions for animations (based on [Robert Penner](http://robertpenner.com/easing/) implementation). - [`physac`](https://github.com/victorfisac/Physac): 2D physics library (collision detection, resolution, dynamics et cetera). Wherever possible, raylib modules were designed to be as decoupled as possible from the other modules. In fact, some modules can be used as standalone libraries, independently of raylib, including the `rlgl` ([example](https://github.com/raysan5/raylib/blob/master/examples/others/rlgl_standalone.c)) and `raudio` ([example](https://github.com/raysan5/raylib/blob/master/examples/others/raudio_standalone.c)) modules.