Rename GameScriptSettings to Settings on the Lua side.

This commit is contained in:
hispidence 2021-08-03 15:16:06 +01:00
parent fde79b4704
commit 2e3a845aa4

View file

@ -3,7 +3,7 @@
void GameScriptSettings::Register(sol::state* lua)
{
lua->new_usertype<GameScriptSettings>("GameScriptSettings",
lua->new_usertype<GameScriptSettings>("Settings",
"screenWidth", &GameScriptSettings::ScreenWidth,
"screenHeight", &GameScriptSettings::ScreenHeight,
"windowTitle", &GameScriptSettings::WindowTitle,