2018-09-16 01:37:48 -05:00
|
|
|
|
using System;
|
2018-10-30 18:29:54 -05:00
|
|
|
|
using System.Xml.Serialization;
|
2018-12-04 23:37:05 -06:00
|
|
|
|
using RecrownedAthenaeum.DataTypes;
|
|
|
|
|
using RecrownedAthenaeum.Persistence;
|
2018-09-16 01:37:48 -05:00
|
|
|
|
|
2018-12-03 23:05:54 -06:00
|
|
|
|
namespace RecrownedAthenaeum.Preferences
|
2018-09-16 01:37:48 -05:00
|
|
|
|
{
|
2018-12-05 00:02:12 -06:00
|
|
|
|
public class General
|
2018-09-16 01:37:48 -05:00
|
|
|
|
{
|
2018-10-30 18:29:54 -05: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);
|
2018-09-16 01:37:48 -05:00
|
|
|
|
}
|
|
|
|
|
}
|