1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Split peep into guest and staff and add more fields

This commit is contained in:
Ted John
2020-05-14 01:21:54 +01:00
parent 7c0da8a32d
commit b710e417df
6 changed files with 330 additions and 51 deletions

View File

@@ -389,6 +389,8 @@ void ScriptEngine::Initialise()
ScTileElement::Register(ctx);
ScEntity::Register(ctx);
ScPeep::Register(ctx);
ScGuest::Register(ctx);
ScStaff::Register(ctx);
dukglue_register_global(ctx, std::make_shared<ScCheats>(), "cheats");
dukglue_register_global(ctx, std::make_shared<ScConsole>(_console), "console");