Пример #1
0
        public TrickorTreatPersistence() : base(1)
        {
            Movable = false;

            if (m_Instance == null || m_Instance.Deleted)
            {
                m_Instance = this;
                m_Treats   = new Dictionary <Mobile, List <Mobile> >();
                //Do all of the introductory stuff
            }
            else
            {
                DeleteInternal();
            }
        }
Пример #2
0
 public TrickorTreatPersistence(Serial serial) : base(serial)
 {
     m_Instance = this;
     m_Treats   = new Dictionary <Mobile, List <Mobile> >();
 }
		public TrickorTreatPersistence( Serial serial ) : base( serial )
		{
			m_Instance = this;
			m_Treats = new Dictionary<Mobile, List<Mobile>>();
		}
		public TrickorTreatPersistence() : base( 1 )
		{
			Movable = false;

			if ( m_Instance == null || m_Instance.Deleted )
			{
				m_Instance = this;
				m_Treats = new Dictionary<Mobile, List<Mobile>>();
				//Do all of the introductory stuff
			}
			else
				DeleteInternal();
		}