From dc1e19ba6bb462f2e0597cbd47031be859dc0d0a Mon Sep 17 00:00:00 2001 From: Carl Smith Date: Mon, 5 Oct 2020 19:59:42 +0100 Subject: [PATCH] Missed one of the `7`s that I replaced with `seven`s in the previous edit. --- raylib-architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib-architecture.md b/raylib-architecture.md index 35a84c5..6c4b012 100644 --- a/raylib-architecture.md +++ b/raylib-architecture.md @@ -12,7 +12,7 @@ raylib is a highly modular library. Everything is contained within a small numbe - [`models`](https://github.com/raysan5/raylib/blob/master/src/models.c): 3D models loading and drawing. - [`raudio`](https://github.com/raysan5/raylib/blob/master/src/raudio.c): Audio device management and sounds / music loading and playing. -Those seven 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. +Those seven 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 seven 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. Apart from those seven main modules, some other modules have been implemented with additional features: - [`raymath`](https://github.com/raysan5/raylib/blob/master/src/raymath.h): Vector2, Vector3, Matrix and Quaternion math related functions