Exemplo n.º 1
0
 public bool registerFSM(string name, TFSMMachine fsm)
 {
     if (_registeredFSMs.ContainsKey(name))
     {
         TLogger.WARNING(name + " has existed , is it intentional or not?");
         return(false);
     }
     _registeredFSMs.Add(name, fsm);
     return(true);
 }
Exemplo n.º 2
0
 public TFSMState()
 {
     _name         = null;
     _stateMachine = null;
 }
Exemplo n.º 3
0
 public TFSMState()
 {
     _name = null;
     _stateMachine = null;
 }