Example #1
0
 public LineFormationCommand(Knights target, Room room, Location location)
 {
     knights = target;
     this.room = room;
     heroLocation = location;
     iter = new KnightsIterator(knights.getKnights());
 }
Example #2
0
File: Player.cs Project: djvorr/SSE
 public Player(Room room)
 {
     currentRoom = room;
     knights = new Knights();
 }