Пример #1
0
        /// <summary>
        /// Move an entity into a named container in this
        /// </summary>
        /// <param name="thing">the entity to add</param>
        /// <returns>errors</returns>
        public bool MoveInto(IPersona thing)
        {
            if (PersonaInventory.Contains(thing))
            {
                return(false);
            }

            PersonaInventory.Add(thing);
            thing.Position = this;
            thing.Save();
            Save();

            return(true);
        }