Move definitions

This commit is contained in:
momo5502 2022-11-12 08:07:51 +01:00
parent 0a2d67e271
commit 47ac6aaf2a
2 changed files with 4 additions and 3 deletions

View File

@ -50,9 +50,6 @@ namespace game
private:
size_t address_;
};
// Global game definitions
constexpr auto CMD_MAX_NESTING = 8;
}
inline size_t operator"" _g(const size_t val)

View File

@ -62,6 +62,7 @@ namespace game
};
// Variables
WEAK symbol<cmd_function_s> cmd_functions{0x15689FF58};
WEAK symbol<CmdArgs> sv_cmd_args{0x15689CE30};
@ -81,6 +82,9 @@ namespace game
WEAK symbol<WNDPROC> SysInputLineWndProc{0x157E78070};
}
// Global game definitions
constexpr auto CMD_MAX_NESTING = 8;
// Reimplementations
eModes Com_SessionMode_GetMode();
}