More general refactorings.

This commit is contained in:
smoogipooo
2017-03-10 14:42:14 +09:00
parent 5f440d0b53
commit 58a88cc715
11 changed files with 235 additions and 28 deletions

View File

@ -102,7 +102,10 @@ namespace osu.Game.Modes.Mania
public override FontAwesome Icon => FontAwesome.fa_osu_mania_o;
public override KeyCounter[] CreateGameplayKeys => new KeyCounter[] { /* Todo: Should be keymod specific */ };
public override IEnumerable<KeyCounter> CreateGameplayKeys()
{
return new KeyCounter[] { /* Todo: Should be keymod specific */ };
}
public override ScoreProcessor CreateScoreProcessor(int hitObjectCount = 0) => null;