2019-01-24 16:43:03 +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.
|
2018-06-10 08:38:17 +08:00
|
|
|
|
|
2020-02-19 17:01:59 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawables
|
2018-06-10 08:38:17 +08:00
|
|
|
|
{
|
|
|
|
|
public partial class DrawableTinyDroplet : DrawableDroplet
|
|
|
|
|
{
|
2020-11-27 10:56:57 +08:00
|
|
|
|
protected override float ScaleFactor => base.ScaleFactor / 2;
|
|
|
|
|
|
2020-11-30 18:04:09 +08:00
|
|
|
|
public DrawableTinyDroplet()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-15 15:27:49 +08:00
|
|
|
|
public DrawableTinyDroplet(TinyDroplet? h)
|
2018-06-10 08:38:17 +08:00
|
|
|
|
: base(h)
|
|
|
|
|
{
|
2020-02-19 13:31:14 +08:00
|
|
|
|
}
|
2018-06-10 08:38:17 +08:00
|
|
|
|
}
|
|
|
|
|
}
|