Ejemplo n.º 1
0
 public void State_Divide(StateChangeable state, StateChangeable.StateType type)
 {
     if (type == StateChangeable.StateType.Divide)
     {
         Debug.Log("Dividing....");
     }
 }
Ejemplo n.º 2
0
 public void State_Death(StateChangeable state, StateChangeable.StateType type)
 {
     if (type == StateChangeable.StateType.Death)
     {
         Debug.Log("Dying....");
     }
 }
Ejemplo n.º 3
0
 public void State_Attack(StateChangeable state, StateChangeable.StateType type)
 {
     if (type == StateChangeable.StateType.Attack)
     {
         Debug.Log("Attacking....");
     }
 }
Ejemplo n.º 4
0
 public void State_Merge(StateChangeable state, StateChangeable.StateType type)
 {
     if (type == StateChangeable.StateType.Merge)
     {
         Debug.Log("Merging....");
     }
 }