Handle all skin component types explicitly

This commit is contained in:
Salman Ahmed
2022-04-23 01:08:53 +03:00
parent 69e2e30971
commit 61078910a6
8 changed files with 40 additions and 5 deletions

View File

@ -90,6 +90,9 @@ namespace osu.Game.Rulesets.Catch.Skinning.Legacy
return new LegacyHitExplosion();
return null;
default:
throw new UnsupportedSkinComponentException(component);
}
}