Inheritance: Controller
Beispiel #1
0
 public GamePlayController(ScreenManager screen, Map selectedMap)
     : base(screen)
 {
     this.players = new Dictionary<int, PlayerStatsController>();
     this.characterControllers = new List<CharacterController>();
     this.map = new MapController(screen, selectedMap);
 }