mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-30 16:57:57 +03:00
15 lines
215 B
C
15 lines
215 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <optional>
|
||
|
|
||
|
enum class ERROR_MODE
|
||
|
{
|
||
|
SILENT,
|
||
|
WARN,
|
||
|
TERMINATE
|
||
|
};
|
||
|
|
||
|
bool ScriptAssert(bool cond, std::string const& msg, std::optional<ERROR_MODE> forceMode = std::nullopt);
|
||
|
|