Exemplo n.º 1
0
 /// <summary>
 /// Prints the cached states in the format:
 /// ORDER - STATE
 /// </summary>
 public void PrintStates()
 {
     for (var i = 0; i < m_States.Count; ++i)
     {
         Debug.Message(i + " - " + m_States[i]);
     }
 }
Exemplo n.º 2
0
        /// <summary>
        /// Prints the currently defined transitions int the format:
        /// ORDER - STATE_FROM->STATE_TO
        /// </summary>
        public void PrintTransitions()
        {
            var i = 0;

            foreach (var transition in m_Transitions)
            {
                Debug.Message(i + " - " + transition);
                i++;
            }
        }