diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-05-04 15:47:54 +1000 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-05-04 15:47:54 +1000 |
commit | 96adafab8e6bd4b870166e74f6704f71bed338e4 (patch) | |
tree | afb041074881fbb907e2d38b33e42663f5caa891 /src/std/utils.h | |
parent | 74fd8a8424aeaccfaf7985f4ad2129fd54ae9fba (diff) |
finish swapchain creation
Diffstat (limited to 'src/std/utils.h')
-rw-r--r-- | src/std/utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/std/utils.h b/src/std/utils.h new file mode 100644 index 0000000..c9827a3 --- /dev/null +++ b/src/std/utils.h @@ -0,0 +1,4 @@ +#pragma once +#include <stdbool.h> + +const char* bool_str(bool input) { return input ? "True" : "False"; }
\ No newline at end of file |