Beispiel #1
0
 public Portal(Rectangle portalRect, String destinationLevelFilename, Vector2 charStartPosition, LevelManager levelManager)
     : base(portalRect)
 {
     this.levelManager = levelManager;
     this.destinationLevelFilename = destinationLevelFilename;
     this.CharStartPosition = charStartPosition;
 }
Beispiel #2
0
 /// <summary>
 /// Constructor 1
 /// </summary>
 /// <param name="game"> ArmaliaGame Object</param>
 /// <param name="levelManager">Level manager for this game.</param>
 public MapMaker(ArmaliaGame game, LevelManager levelManager)
 {
     this.game = game;
     this.levelManager = levelManager;
 }