Esempio n. 1
0
 public Robot(CommandSet commandSet, IReport reporter, Location bottomLeftBound, Location topRightBound)
 {
     _commandSet = commandSet;
     _reporter = reporter;
     _bottomLeftBound = bottomLeftBound;
     _topRightBound = topRightBound;
     Position = _commandSet.StartPosition;
 }
Esempio n. 2
0
 public CommandFactory()
 {
     input      = new List <string>();
     commandSet = new CommandSet();
 }
 public CommandFactory()
 {
     _inputStrings = new List<string>();
     _commandSet = new CommandSet();
 }
Esempio n. 4
0
 public Robot(CommandSet commandSet, IReport reporter) : this(commandSet, reporter, null, null)
 {
 }
Esempio n. 5
0
 public Robot(CommandSet commandSet, IReport reporter)
     : this(commandSet, reporter, null, null)
 {
 }
Esempio n. 6
0
 public CommandFactory()
 {
     _inputStrings = new List <string>();
     _commandSet   = new CommandSet();
 }