internal ItemInventory(ItemContainer owner, IScriptItemInventory scriptObject) : base(scriptObject) { if (owner == null) { throw new ArgumentNullException("Owner is null!"); } this.owner = owner; }
internal NPCInventory(NPC owner, IScriptItemInventory scriptObject) : base(owner, scriptObject) { }