More misc changes.

This commit is contained in:
hispidence 2022-02-07 20:42:40 +00:00
parent 5571f3345c
commit 70f29975a7
6 changed files with 12 additions and 13 deletions

View file

@ -6,7 +6,7 @@
#include "Strings/StringsHandler.h"
#include "Inventory/InventoryHandler.h"
#include "ReservedScriptNames.h"
#include "GameScriptFreeFunctions.h"
#include "Misc/Misc.h"
static sol::state s_solState;
static sol::table s_rootTable;
@ -46,6 +46,6 @@ void ScriptInterfaceState::Init()
// Misc handlers not assigned above
InventoryHandler::Register(&s_solState, s_rootTable);
GameScriptFreeFunctions::Register(&s_solState, s_rootTable);
Misc::Register(&s_solState, s_rootTable);
}