Ejemplo n.º 1
0
 internal MazePrototypeFactory(Maze_Prototype maze, WallPrototype wall, RoomPrototype room, DoorPrototype door)
 {
     _prototypeMaze = maze;
     _prototypeWall = wall;
     _prototypeRoom = room;
     _prototypeDoor = door;
 }
Ejemplo n.º 2
0
        public virtual object Clone()
        {
            WallPrototype clone = new WallPrototype();

            return(clone);
        }