osu/osu.Game.Rulesets.Catch/Skinning/Default/HyperDropletBorderPiece.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
403 B
C#
Raw Normal View History

2020-11-26 05:36:42 +00: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.
2020-12-07 03:35:24 +00:00
namespace osu.Game.Rulesets.Catch.Skinning.Default
2020-11-26 05:36:42 +00:00
{
public partial class HyperDropletBorderPiece : HyperBorderPiece
{
public HyperDropletBorderPiece()
{
Size /= 2;
BorderThickness = 6f;
}
}
}