Exemplo n.º 1
0
        protected BaseGame([NotNull] string contentRootDirectory, [NotNull] BasePluginManager pluginManager)
        {
            _graphicsDeviceManager = new GraphicsDeviceManager(this);
            _audioManager          = new AudioManager();
            _effectManager         = new EffectManager(this);
            _fontManager           = new FontManager();
            _pluginManager         = pluginManager;

            Content.RootDirectory = contentRootDirectory;
        }