Example #1
0
        public IItemCorpse AddItemCorpse(Guid guid, ItemCorpseBlueprint blueprint, IRoom room, ICharacter victim, ICharacter killer)
        {
            if (blueprint == null)
            {
                throw new ArgumentNullException(nameof(blueprint));
            }
            IItemCorpse item = new ItemCorpse(guid, blueprint, room, victim, killer);

            _items.Add(item);
            return(item);
        }
Example #2
0
 public IItemCorpse AddItemCorpse(Guid guid, ItemCorpseBlueprint blueprint, IRoom container, ICharacter victim, ICharacter killer)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public IItemCorpse AddItemCorpse(Guid guid, ItemCorpseBlueprint blueprint, IRoom room, ICharacter victim)
 {
     throw new NotImplementedException();
 }