Exemple #1
0
        public WindowManager(Game game)
            : base(game)
        {
            this.windowGroup = new WindowGroup();

            WindowChanging += delegate { };

            visible = true;
        }
Exemple #2
0
 public WindowManager(Game game, List <Window> windows)
     : this(game)
 {
     this.windowGroup = new WindowGroup(windows);
 }
Exemple #3
0
 public WindowManager(Game game, Dictionary <string, Window> windows)
     : this(game)
 {
     this.windowGroup = new WindowGroup(windows);
 }