1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 16:02:55 +08:00

Fix post-merge errors

This commit is contained in:
smoogipoo 2020-03-31 15:24:13 +09:00
parent 211a8db4c5
commit ae668e3e87
2 changed files with 4 additions and 2 deletions

View File

@ -19,8 +19,8 @@ namespace osu.Game.Rulesets.Mania
public enum ManiaSkinComponents
{
ColumnBackground
HitTarget
ColumnBackground,
HitTarget,
KeyArea
}
}

View File

@ -46,8 +46,10 @@ namespace osu.Game.Rulesets.Mania.Skinning
{
case ManiaSkinComponents.ColumnBackground:
return new LegacyColumnBackground();
case ManiaSkinComponents.HitTarget:
return new LegacyHitTarget();
case ManiaSkinComponents.KeyArea:
return new LegacyKeyArea();
}