public StandStill(Steps state) : this(state.CurrentSpeed, state.Human)
 {
 }
 public Run(Steps state) : this(state.CurrentSpeed, state.Human)
 {
 }
 public Human()
 {
     _state = new StandStill(0, this);
 }