示例#1
0
 public Moving(GameObject stateableParam)
 {
     stateable = stateableParam;
     vigilante = stateable.GetComponent<VigilanteEnemy> ();
 }
示例#2
0
 public Thinking(GameObject stateableParam)
 {
     stateable = stateableParam;
     vigilante = stateable.GetComponent<VigilanteEnemy> ();
     fire = false;
 }