From be993f55f5d93150b8b418b031d2e9c8d88978b2 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 15 Nov 2022 20:40:37 -0500 Subject: allow lua to create dialog box --- src/engine.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/engine.cpp') diff --git a/src/engine.cpp b/src/engine.cpp index d8eef23..02598d4 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -71,6 +71,9 @@ int Engine::init(void) script->addToGameNamespace("play", bindInstance(&AudioSystem::playSound, systems.system().get())); + script->addToGameNamespace("dialog", + bindInstance(&UISystem::createDialogBox, + systems.system().get())); script->init(); -- cgit v1.2.3