Make IBeatmapConverter an abstract class instead of an interface.

This commit is contained in:
smoogipooo
2017-04-18 09:38:52 +09:00
parent 456aee63ca
commit efc050a95a
16 changed files with 29 additions and 34 deletions

View File

@ -42,6 +42,6 @@ namespace osu.Game.Beatmaps
{
}
protected abstract IBeatmapConverter<T> CreateBeatmapConverter();
protected abstract BeatmapConverter<T> CreateBeatmapConverter();
}
}