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