diff options
Diffstat (limited to 'src/scripting/luascript.h')
-rw-r--r-- | src/scripting/luascript.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/scripting/luascript.h b/src/scripting/luascript.h index af13aa22..b9bde2d8 100644 --- a/src/scripting/luascript.h +++ b/src/scripting/luascript.h @@ -52,6 +52,8 @@ class LuaScript: public Script void push(Thing *); + void push(const std::list<InventoryItem> &itemList); + int execute(); static void getQuestCallback(Character *, const std::string &, @@ -69,6 +71,7 @@ class LuaScript: public Script */ static bool loadGlobalEventScript(const std::string &file); static bool loadSpecialActionsScript(const std::string &file); + static bool loadCraftScript(const std::string &file); private: lua_State *mState; |