mirror of
https://github.com/ppy/osu.git
synced 2024-12-13 08:32:57 +08:00
Attempt to fix code style infractions
This commit is contained in:
parent
345430ab39
commit
395ab58892
@ -18,6 +18,7 @@ namespace osu.Game.Rulesets.Mania.Skinning.Argon
|
||||
switch (component)
|
||||
{
|
||||
case ManiaSkinComponent maniaComponent:
|
||||
// TODO: Once everything is finalised, consider throwing UnsupportedSkinComponentException on missing entries.
|
||||
switch (maniaComponent.Component)
|
||||
{
|
||||
case ManiaSkinComponents.HitTarget:
|
||||
@ -25,8 +26,6 @@ namespace osu.Game.Rulesets.Mania.Skinning.Argon
|
||||
|
||||
case ManiaSkinComponents.KeyArea:
|
||||
return new ArgonKeyArea();
|
||||
|
||||
// TODO: Once everything is finalised, consider throwing UnsupportedSkinComponentException on missing entries.
|
||||
}
|
||||
|
||||
break;
|
||||
|
@ -22,6 +22,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
|
||||
return new ArgonJudgementPiece(resultComponent.Component);
|
||||
|
||||
case OsuSkinComponent osuComponent:
|
||||
// TODO: Once everything is finalised, consider throwing UnsupportedSkinComponentException on missing entries.
|
||||
switch (osuComponent.Component)
|
||||
{
|
||||
case OsuSkinComponents.HitCircle:
|
||||
@ -56,8 +57,6 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
|
||||
|
||||
case OsuSkinComponents.CursorTrail:
|
||||
return new ArgonCursorTrail();
|
||||
|
||||
// TODO: Once everything is finalised, consider throwing UnsupportedSkinComponentException on missing entries.
|
||||
}
|
||||
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user