2019-01-23 01:31:15 +00:00
|
|
|
|
using RecrownedAthenaeum.SpecialTypes;
|
2019-09-11 01:30:07 +00:00
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
2019-01-23 01:31:15 +00:00
|
|
|
|
using System;
|
2018-09-16 06:37:48 +00:00
|
|
|
|
|
2019-01-23 01:31:15 +00:00
|
|
|
|
namespace RhythmBullet.Preferences
|
2018-09-16 06:37:48 +00:00
|
|
|
|
{
|
2018-12-05 06:02:12 +00:00
|
|
|
|
public class General
|
2018-09-16 06:37:48 +00:00
|
|
|
|
{
|
2019-09-11 01:30:07 +00:00
|
|
|
|
public Resolution Resolution = new Resolution(
|
|
|
|
|
GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Width,
|
|
|
|
|
GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Height);
|
2018-10-30 23:29:54 +00:00
|
|
|
|
public bool Fullscreen = false;
|
|
|
|
|
public float MusicVolume = 1f;
|
|
|
|
|
public float FXVolume = 1f;
|
|
|
|
|
public string MusicDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyMusic);
|
2019-01-27 05:57:00 +00:00
|
|
|
|
public string skinName;
|
|
|
|
|
public string skinDirectory;
|
2018-09-16 06:37:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|