From 8be6b86daac3d80df455a1cf9f09e70e97d61fe3 Mon Sep 17 00:00:00 2001 From: Kevin Trogant Date: Sat, 3 Aug 2024 12:44:10 +0200 Subject: [PATCH] Update CVar system --- CVar-system.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CVar-system.md b/CVar-system.md index e2a5bee..b95d54a 100644 --- a/CVar-system.md +++ b/CVar-system.md @@ -13,6 +13,7 @@ At the time of writing this, the following types are available: | float | `RT_CVAR_F` | `.f` | | string | `RT_CVAR_S` | `.s` | | size_t | `RT_CVAR_SZ` | `.sz` | +| unsigned int | `RT_CVAR_UI`| `.ui` | CVars must be registered to be able to retrieve them from other parts of the code (including changing them from configuration files). This is done via `rtRegisterCVAR`.