public void setType(Constants.stateType type) { this.type = type; }
public State(Constants.stateType _type, String _motion) { this.type = _type; transitions = new Dictionary<String, Transition>(); this.motion = _motion; }
public State(Constants.stateType _type, String _motion) { this.type = _type; transitions = new Dictionary <String, Transition>(); this.motion = _motion; }