コード例 #1
0
ファイル: Rover.cs プロジェクト: kevPo/MarsRover
 public void SetState(State state)
 {
     this.state = state;
 }
コード例 #2
0
ファイル: Rover.cs プロジェクト: kevPo/MarsRover
 public Rover(Point point, Char direction, IStateFactory stateFactory, Planet planet)
 {
     currentPoint = point;
     state = stateFactory.BuildState(this, direction, planet);
 }