Exemplo n.º 1
0
 public MazePrototypeFactory(MazeP maze, RoomP room, DoorP door, WallP wall)
 {
     this.prototypeRoom = room;
     this.prototypeDoor = door;
     this.prototypeWall = wall;
     this.prototypeMaze = maze;
 }
Exemplo n.º 2
0
 public DoorP(DoorP door)
 {
     this.room1 = door.room1;
     this.room2 = door.room2;
 }