/
Mr.Stalin
/
FOnline-Engine
Обзор
Документация
Войти
/
Mr.Stalin
/
FOnline-Engine
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Source/Scripting/AngelScript/CoreScripts/Core.fos
13 строк
478 B
cvet
Refactor networking commands and remove NetCommand
06 июн 2026, 19:50
06 июн 2026, 19:50
ba97187
Код
Авторство
О чём код?
namespace Core // Sort -10 { // Invariant check: when the condition is false the invariant is broken, so throw // with the given message (plus optional context values, forwarded to the // exception). Unlike a bare error throw, a `verify` documents a contract the // surrounding code expects to always hold. Because `throw` is noreturn, a passing // `verify(x != null, ...)` also narrows `x` to non-null. #define verify(cond, ...) \ if (!(cond)) \ throw(__VA_ARGS__) }