options -> settings

This commit is contained in:
EVAST9919
2017-05-18 11:39:22 +03:00
parent d07d94d606
commit 83a89ce22d
12 changed files with 76 additions and 86 deletions

View File

@ -14,7 +14,7 @@ using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Play.HUD;
using OpenTK.Input;
using osu.Game.Screens.Play.Options;
using osu.Game.Screens.Play.Settings;
namespace osu.Game.Screens.Play
{
@ -30,7 +30,7 @@ namespace osu.Game.Screens.Play
public readonly HealthDisplay HealthDisplay;
public readonly SongProgress Progress;
public readonly ModDisplay ModDisplay;
public readonly OptionsDisplay OptionsDisplay;
public readonly SettingsDisplay SettingsDisplay;
private Bindable<bool> showKeyCounter;
private Bindable<bool> showHud;
@ -44,7 +44,7 @@ namespace osu.Game.Screens.Play
protected abstract HealthDisplay CreateHealthDisplay();
protected abstract SongProgress CreateProgress();
protected abstract ModDisplay CreateModsContainer();
protected abstract OptionsDisplay CreateOptionsDisplay();
protected abstract SettingsDisplay CreateSettingsDisplay();
protected HUDOverlay()
{
@ -63,7 +63,7 @@ namespace osu.Game.Screens.Play
HealthDisplay = CreateHealthDisplay(),
Progress = CreateProgress(),
ModDisplay = CreateModsContainer(),
OptionsDisplay = CreateOptionsDisplay(),
SettingsDisplay = CreateSettingsDisplay(),
}
});
}