feat: add getter and setter for halaa ownership (#79)

This commit is contained in:
55Honey
2022-12-30 02:01:40 +01:00
committed by GitHub
parent 67eb2d808d
commit aa6615b23a
2 changed files with 58 additions and 0 deletions

View File

@@ -98,6 +98,7 @@ luaL_Reg GlobalMethods[] =
{ "GetGUIDType", &LuaGlobalFunctions::GetGUIDType },
{ "GetGUIDEntry", &LuaGlobalFunctions::GetGUIDEntry },
{ "GetAreaName", &LuaGlobalFunctions::GetAreaName },
{ "GetOwnerHalaa", &LuaGlobalFunctions::GetOwnerHalaa },
{ "bit_not", &LuaGlobalFunctions::bit_not },
{ "bit_xor", &LuaGlobalFunctions::bit_xor },
{ "bit_rshift", &LuaGlobalFunctions::bit_rshift },
@@ -148,6 +149,7 @@ luaL_Reg GlobalMethods[] =
{ "StartGameEvent", &LuaGlobalFunctions::StartGameEvent },
{ "StopGameEvent", &LuaGlobalFunctions::StopGameEvent },
{ "HttpRequest", &LuaGlobalFunctions::HttpRequest },
{ "SetOwnerHalaa", &LuaGlobalFunctions::SetOwnerHalaa },
{ NULL, NULL }
};