示例#1
0
 public LineFormationCommand(Knights target, Room room, Location location)
 {
     knights = target;
     this.room = room;
     heroLocation = location;
     iter = new KnightsIterator(knights.getKnights());
 }
示例#2
0
文件: Player.cs 项目: djvorr/SSE
 public Player(Room room)
 {
     currentRoom = room;
     knights = new Knights();
 }