mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
General fixups.
This commit is contained in:
@ -12,11 +12,9 @@ namespace osu.Game.Modes.Mania
|
||||
{
|
||||
protected override PlayMode PlayMode => PlayMode.Mania;
|
||||
|
||||
private int columns;
|
||||
|
||||
public ManiaDifficultyCalculator(Beatmap beatmap, int columns = 5) : base(beatmap)
|
||||
public ManiaDifficultyCalculator(Beatmap beatmap)
|
||||
: base(beatmap)
|
||||
{
|
||||
this.columns = columns;
|
||||
}
|
||||
|
||||
protected override double CalculateInternal(Dictionary<String, String> categoryDifficulty)
|
||||
|
@ -108,9 +108,9 @@ namespace osu.Game.Modes.Mania
|
||||
|
||||
public override DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap) => new ManiaDifficultyCalculator(beatmap);
|
||||
|
||||
public override IBeatmapConverter<ManiaBaseHit> CreateBeatmapConverter<ManiaBaseHit>()
|
||||
public override IBeatmapConverter<T> CreateBeatmapConverter<T>()
|
||||
{
|
||||
return (IBeatmapConverter<ManiaBaseHit>)new ManiaBeatmapConverter();
|
||||
return (IBeatmapConverter<T>)new ManiaBeatmapConverter();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user