Exemplo n.º 1
0
        internal ItemInventory(ItemContainer owner, IScriptItemInventory scriptObject) : base(scriptObject)
        {
            if (owner == null)
            {
                throw new ArgumentNullException("Owner is null!");
            }

            this.owner = owner;
        }
Exemplo n.º 2
0
 internal NPCInventory(NPC owner, IScriptItemInventory scriptObject) : base(owner, scriptObject)
 {
 }