17 lines
485 B
C#
Raw Normal View History

2019-01-22 19:31:15 -06:00
using RecrownedAthenaeum.SpecialTypes;
using System;
2019-01-22 19:31:15 -06:00
namespace RhythmBullet.Preferences
{
public class General
{
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);
2019-01-26 23:57:00 -06:00
public string skinName;
public string skinDirectory;
}
}