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(); }
public DiagnosticsCommandHost(DiagnosticsUI ui) { this.ui = ui; }