mirror of
https://github.com/ppy/osu.git
synced 2025-01-27 13:23:05 +08:00
Fix post-merge errors
This commit is contained in:
parent
211a8db4c5
commit
ae668e3e87
@ -19,8 +19,8 @@ namespace osu.Game.Rulesets.Mania
|
|||||||
|
|
||||||
public enum ManiaSkinComponents
|
public enum ManiaSkinComponents
|
||||||
{
|
{
|
||||||
ColumnBackground
|
ColumnBackground,
|
||||||
HitTarget
|
HitTarget,
|
||||||
KeyArea
|
KeyArea
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -46,8 +46,10 @@ namespace osu.Game.Rulesets.Mania.Skinning
|
|||||||
{
|
{
|
||||||
case ManiaSkinComponents.ColumnBackground:
|
case ManiaSkinComponents.ColumnBackground:
|
||||||
return new LegacyColumnBackground();
|
return new LegacyColumnBackground();
|
||||||
|
|
||||||
case ManiaSkinComponents.HitTarget:
|
case ManiaSkinComponents.HitTarget:
|
||||||
return new LegacyHitTarget();
|
return new LegacyHitTarget();
|
||||||
|
|
||||||
case ManiaSkinComponents.KeyArea:
|
case ManiaSkinComponents.KeyArea:
|
||||||
return new LegacyKeyArea();
|
return new LegacyKeyArea();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user