1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 04:17:18 +08:00

21 lines
531 B
C#
Raw Normal View History

// 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.
2018-06-09 17:38:17 -07:00
namespace osu.Game.Rulesets.Catch.Objects.Drawables
2018-06-09 17:38:17 -07:00
{
2022-11-24 14:32:20 +09:00
public partial class DrawableTinyDroplet : DrawableDroplet
2018-06-09 17:38:17 -07:00
{
2020-11-27 11:56:57 +09:00
protected override float ScaleFactor => base.ScaleFactor / 2;
public DrawableTinyDroplet()
: this(null)
{
}
public DrawableTinyDroplet(TinyDroplet? h)
2018-06-09 17:38:17 -07:00
: base(h)
{
2020-02-19 14:31:14 +09:00
}
2018-06-09 17:38:17 -07:00
}
}