rhythmbullet/RhythmBullet/Preferences/General.cs

17 lines
489 B
C#
Raw Normal View History

using System;
2018-10-30 23:29:54 +00:00
using System.Xml.Serialization;
using RecrownedAthenaeum.DataTypes;
using RecrownedAthenaeum.Persistence;
2018-12-04 05:05:54 +00:00
namespace RecrownedAthenaeum.Preferences
{
public class General
{
2018-10-30 23:29:54 +00:00
public Resolution Resolution = new Resolution(1920, 1080);
public bool Fullscreen = false;
public float MusicVolume = 1f;
public float FXVolume = 1f;
public string MusicDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyMusic);
}
}