fixed font names.

This commit is contained in:
2019-09-10 21:30:07 -04:00
parent e2ff87f9b6
commit a06c5ec4ff
6 changed files with 8 additions and 6 deletions

View File

@@ -1,11 +1,14 @@
using RecrownedAthenaeum.SpecialTypes;
using Microsoft.Xna.Framework.Graphics;
using System;
namespace RhythmBullet.Preferences
{
public class General
{
public Resolution Resolution = new Resolution(1920, 1080);
public Resolution Resolution = new Resolution(
GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Width,
GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Height);
public bool Fullscreen = false;
public float MusicVolume = 1f;
public float FXVolume = 1f;