Add support for parsing mania skin colours

This commit is contained in:
smoogipoo
2020-04-02 17:56:12 +09:00
parent 7c428011a2
commit a77933f5e0
6 changed files with 38 additions and 6 deletions

View File

@ -73,7 +73,7 @@ namespace osu.Game.Beatmaps.Formats
switch (section)
{
case Section.Colours:
handleColours(output, line);
HandleColours(output, line);
return;
}
}
@ -87,7 +87,7 @@ namespace osu.Game.Beatmaps.Formats
return line;
}
private void handleColours(T output, string line)
protected void HandleColours<TModel>(TModel output, string line)
{
var pair = SplitKeyVal(line);