#include #include "../client.h" void lua_register_inventory_where(sol::state *state) { state->create_named_table("InventoryWhere", "Personal", static_cast(invWherePersonal), "Bank", static_cast(invWhereBank), "SharedBank", static_cast(invWhereSharedBank), "Trading", static_cast(invWhereTrading), "Cursor", static_cast(invWhereCursor) ); }