RegisterLua and ShowCommands, continue refactor

This commit is contained in:
Krzosa Karol
2025-12-14 21:54:37 +01:00
parent 85ca1a6a9e
commit f297006dcb
13 changed files with 439 additions and 443 deletions

View File

@@ -212,4 +212,9 @@ inline uint64_t GetRandomU64(RandomSeed *state) {
x ^= x >> 7;
x ^= x << 17;
return state->a = x;
}
}
#define STRINGIFY_(x) x
#define STRINGIFY(x) STRINGIFY_(x)
#define CONCAT_(a, b) a ## b
#define CONCAT(a, b) CONCAT_(a, b)