コード例 #1
0
 public StandStill(Steps state) : this(state.CurrentSpeed, state.Human)
 {
 }
コード例 #2
0
 public Run(Steps state) : this(state.CurrentSpeed, state.Human)
 {
 }
コード例 #3
0
 public Human()
 {
     _state = new StandStill(0, this);
 }