internal MazePrototypeFactory(Maze_Prototype maze, WallPrototype wall, RoomPrototype room, DoorPrototype door) { _prototypeMaze = maze; _prototypeWall = wall; _prototypeRoom = room; _prototypeDoor = door; }
public object Clone() { Maze_Prototype clone = new Maze_Prototype(); return(clone); }