コード例 #1
0
        public DiagnosticsManager(Game game)
        {
            ui      = new DiagnosticsUI(game, this);
            host    = new DiagnosticsCommandHost(ui);
            fps     = new FPSCounter(game, this);
            ruler   = new TimeRuler(game, this);
            factory = new GameComponentFactory(game, this);

            InitBasicCommands();
        }
コード例 #2
0
        public DiagnosticsManager(Game game)
        {
            ui = new DiagnosticsUI(game, this);
            host = new DiagnosticsCommandHost(ui);
            fps = new FPSCounter(game, this);
            ruler = new TimeRuler(game, this);
            factory = new GameComponentFactory(game, this);

            InitBasicCommands();
        }
コード例 #3
0
 public DiagnosticsCommandHost(DiagnosticsUI ui)
 {
     this.ui = ui;
 }
コード例 #4
0
 public DiagnosticsCommandHost(DiagnosticsUI ui)
 {
     this.ui = ui;
 }