Beispiel #1
0
 public Running()
 {
     m_Openning = null;
     m_Leaving = null;
     m_Getting = null;
     OnSafe = false;
     m_CurrentPetIndex = 0;
 }
Beispiel #2
0
 public Running(AccountUC accountform)
 {
     account = accountform;
     m_Openning = null;
     m_Leaving = null;
     m_Getting = null;
     m_CurrentPetIndex = 0;
 }
Beispiel #3
0
        public void GettingFoodFromSafe()
        {
            if (m_Getting == null)
                m_Getting = new Getting(account);

            m_Getting.Init();
        }