add setting to toggle the gameplay cursor trail

This commit is contained in:
Unknown
2019-01-23 14:27:34 +01:00
parent 4d310c3226
commit 481f33d17b
4 changed files with 19 additions and 7 deletions

View File

@ -19,12 +19,14 @@ namespace osu.Game.Rulesets.Osu.Configuration
Set(OsuSetting.SnakingInSliders, true);
Set(OsuSetting.SnakingOutSliders, true);
Set(OsuSetting.ShowCursorTrail, true);
}
}
public enum OsuSetting
{
SnakingInSliders,
SnakingOutSliders
SnakingOutSliders,
ShowCursorTrail
}
}