Basic UI system

This commit is contained in:
2023-12-21 15:27:49 +01:00
parent 70cc2eae8c
commit 569294f292
5 changed files with 552 additions and 67 deletions

View File

@@ -21,6 +21,10 @@ typedef double f64;
#define BZ_ASSERT(e) assert(e)
#define BZ_MAX(a, b) (((a) > (b)) ? (a) : (b))
#define BZ_MIN(a, b) BZ_MAX(b, a)
#define BZ_ABS(a) ((a >= 0) ? (a) : (-(a)))
#define DEBUG_MODE
#ifndef DEBUG_MODE
#undef BZ_ASSERT