[Quest API] Add GetSpawn() to Perl and Lua (#4702)

* [Quest API] Add GetSpawn() to Perl and Lua

* Push

* Update npc.h
This commit is contained in:
Alex King
2025-02-21 23:57:41 -05:00
committed by GitHub
parent aa4869c6e9
commit 486c7c44be
5 changed files with 18 additions and 4 deletions
+2
View File
@@ -10,6 +10,7 @@ class Lua_NPC;
class Lua_Client;
struct Lua_NPC_Loot_List;
class Lua_Inventory;
class Lua_Spawn;
namespace luabind {
struct scope;
@@ -196,6 +197,7 @@ public:
luabind::adl::object items_table
);
void ReturnHandinItems(Lua_Client c);
Lua_Spawn GetSpawn(lua_State* L);
};
#endif