Skip to content
This repository has been archived by the owner on Sep 18, 2022. It is now read-only.

Commit

Permalink
Added game settings "hub"
Browse files Browse the repository at this point in the history
  • Loading branch information
craftersmine committed Apr 19, 2019
1 parent 2ede682 commit c6276ab
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions craftersmine.EtherEngine.Core/SettingsController.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using craftersmine.EtherEngine.Rendering;

namespace craftersmine.EtherEngine.Core
{
public sealed class SettingsController
{
public static float MasterVolume { get; set; }

public static VSyncMode VSyncMode { get { return Window.CurrentWindow.VSyncMode; } set { Window.CurrentWindow.VSyncMode = value; } }

public static bool IsFullscreen { get { return Window.CurrentWindow.IsFullscreen; } set { Window.CurrentWindow.ChangeFullscreenMode(value); } }

public static WindowSize Resolution { get { return Window.CurrentWindow.WindowSize; } set { Window.CurrentWindow.ChangeResolution(value); } }
}
}

0 comments on commit c6276ab

Please sign in to comment.