17 lines
485 B
C#
17 lines
485 B
C#
using RecrownedAthenaeum.SpecialTypes;
|
|
using System;
|
|
|
|
namespace RhythmBullet.Preferences
|
|
{
|
|
public class General
|
|
{
|
|
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);
|
|
public string skinName;
|
|
public string skinDirectory;
|
|
}
|
|
}
|