feat(gameui): make stubs of script methods

This commit is contained in:
VDm 2025-08-05 02:11:42 +04:00
parent 3df4e5eeeb
commit 0a0c327c46
4 changed files with 15 additions and 5 deletions

View file

@ -493,7 +493,9 @@ static int32_t Script_ForceQuit(lua_State* L) {
}
static int32_t Script_GetCursorMoney(lua_State* L) {
WHOA_UNIMPLEMENTED(0);
// TODO
lua_pushnumber(L, 0.0);
return 1;
}
static int32_t Script_DropCursorMoney(lua_State* L) {