Beispiel #1
0
 public Action(EActionTypes type, float waitTime)
 {
     m_type     = type;
     m_waitTime = waitTime;
     m_name     = m_type.ToString();
 }
Beispiel #2
0
        protected string m_name;        // The name of the Action

        // Constructors
        public Action()
        {
            m_type     = EActionTypes.Wait;
            m_waitTime = 0.0f;
            m_name     = m_type.ToString();
        }