diff options
| author | Léo Lam <leo@leolam.fr> | 2020-09-20 17:59:41 +0200 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-09-22 18:43:03 +0200 |
| commit | 8756ccdd07c690e61f9896830ca8bec12d4cfee1 (patch) | |
| tree | 6c8ecf11d0a9792b655ead8d71a6db3cfef90178 /src/KingSystem/Resource/resSystem.h | |
| parent | 5ac991b0e05026b5ae25bfb7541d085f8d7000a2 (diff) | |
ksys: Start adding OverlayArenaSystem
Diffstat (limited to 'src/KingSystem/Resource/resSystem.h')
| -rw-r--r-- | src/KingSystem/Resource/resSystem.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/KingSystem/Resource/resSystem.h b/src/KingSystem/Resource/resSystem.h new file mode 100644 index 00000000..4c27f2b4 --- /dev/null +++ b/src/KingSystem/Resource/resSystem.h @@ -0,0 +1,13 @@ +#pragma once + +namespace ksys::res { + +// In release builds, the only thing this function does is return 1. +// TODO: figure out what this is used for. Stubbed log function? +bool stubbedLogFunction(); + +// In release builds, the only thing this function does is return 0. +// TODO: figure out what this is used for. Stubbed log function? +bool returnFalse(); + +} // namespace ksys::res |
