From 6cb32530dcb0081ce89e5d17052c7f9035a51a0a Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 27 May 2019 16:17:50 +0200 Subject: [PATCH] Updated raylib architecture (markdown) --- raylib-architecture.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raylib-architecture.md b/raylib-architecture.md index eba9e3f..3e9686b 100644 --- a/raylib-architecture.md +++ b/raylib-architecture.md @@ -9,7 +9,7 @@ raylib is a very modular library, defined by a small number of specific and self - [`textures`](https://github.com/raysan5/raylib/blob/master/src/textures.c): Textures / Image loading and management. - [`text`](https://github.com/raysan5/raylib/blob/master/src/text.c): Font data loading and text drawing. - [`models`](https://github.com/raysan5/raylib/blob/master/src/models.c): 3D models loading and drawing. - - [`audio`](https://github.com/raysan5/raylib/blob/master/src/audio.c): Audio device management and sounds / music loading and playing. + - [`raudio`](https://github.com/raysan5/raylib/blob/master/src/audio.c): Audio device management and sounds / music loading and playing. Those 7 modules share a common header: [`raylib.h`](https://github.com/raysan5/raylib/blob/master/src/raylib.h), all user functions are defined in that header, despite the fact they are divided internally in 7 modules. That way, the user just needs to include `raylib.h` to get all raylib functionality. Other libraries use one header for every module (that way the user can choose included modules) or also headers that refer to other headers. raylib uses a simpler approach that's easier for novice (and expert) users. @@ -27,6 +27,6 @@ Most of the secondary modules can also be used as standalone libraries: `raymath *NOTE: `raymath`, `camera` and `gestures` are compiled by default with raylib.* -raylib also uses some external libraries—most of them included as single-file header-only—like the well-known [stb libraries](https://github.com/nothings/stb) or [similar ones](https://github.com/raysan5/raylib/tree/develop/src/external). +raylib also uses some external libraries—most of them included as single-file header-only libraries, like the well-known [stb libraries](https://github.com/nothings/stb) and [similar ones](https://github.com/raysan5/raylib/tree/develop/src/external). And that's currently the raylib internal structure. \ No newline at end of file