From 1ffbb70e827c0b92ba505d90e6f57e7286e5ffe1 Mon Sep 17 00:00:00 2001 From: Antonis Geralis <43617260+planetis-m@users.noreply.github.com> Date: Sun, 25 Sep 2022 22:48:35 +0300 Subject: [PATCH] minor --- raylib-enumerated-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib-enumerated-types.md b/raylib-enumerated-types.md index 0a80307..6cffaf7 100644 --- a/raylib-enumerated-types.md +++ b/raylib-enumerated-types.md @@ -1,4 +1,4 @@ -raylib provides some enumerated types to be used in some functions. You probably noticed that despite being typedef, there is no function referring to those `enum` types, all related parameters are just defined as `int`. This is a design decision and the reason for that is because those enums just intend to be a way to organize similar values definition, I use enums instead of plain defines. You can notice that because there is no enum intended to create variables of that type, just to be used as defined values. Maybe I review this decision decision in a future. +raylib provides some enumerated types to be used in some functions. You probably noticed that despite being typedef, there is no function referring to those `enum` types, all related parameters are just defined as `int`. This is a design decision and the reason for that is because those enums just intend to be a way to organize similar values definition, I use enums instead of plain defines. You can notice that because there is no enum intended to create variables of that type, just to be used as defined values. Maybe I review this decision in a future. Here it is the list with the provided enums and the functions intended to use them.