2019-08-30 13:39:02 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch
|
|
|
|
{
|
2019-08-30 14:10:11 +08:00
|
|
|
public class CatchSkinComponent : GameplaySkinComponent<CatchSkinComponents>
|
2019-08-30 13:39:02 +08:00
|
|
|
{
|
|
|
|
public CatchSkinComponent(CatchSkinComponents component)
|
|
|
|
: base(component)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-09-03 13:21:54 +08:00
|
|
|
protected override string RulesetPrefix => "catch"; // todo: use CatchRuleset.SHORT_NAME;
|
2019-08-30 13:39:02 +08:00
|
|
|
|
|
|
|
protected override string ComponentName => Component.ToString().ToLower();
|
|
|
|
}
|
|
|
|
}
|