Ejemplo n.º 1
0
        public static MobBehaviorTree GetInstance()
        {
            if (m_instance == null)
            {
                m_instance = new MobBehaviorTree();
            }

            return(m_instance);
        }
Ejemplo n.º 2
0
        public static MobBehaviorTree GetInstance()
        {
            if (m_instance == null)
            {
                m_instance = new MobBehaviorTree();
            }

            return m_instance;
        }
Ejemplo n.º 3
0
 public void Update(
     MobUpdateContext context)
 {
     MobBehaviorTree.GetInstance().Update(context);
 }