Artemis.Engine.DisplayManager.SetFullscreen C# (CSharp) Метод

SetFullscreen() публичный Метод

Set whether or not the display is fullscreen.
public SetFullscreen ( bool state ) : void
state bool
Результат void
        public void SetFullscreen(bool state)
        {
            if (state != Fullscreen && !GameConstants.FullscreenTogglable)
                throw UntogglableException("Fullscreen", GameConstants.XmlElements.FULLSCREEN_TOGGLABLE);
            Fullscreen = state;
            dirty = true;
        }