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