2019-01-24 08:43:03 +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.
|
2018-06-10 00:38:17 +00:00
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2020-11-30 10:04:09 +00:00
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
|
|
2020-02-19 09:01:59 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawables
|
2018-06-10 00:38:17 +00:00
|
|
|
|
{
|
|
|
|
|
public class DrawableTinyDroplet : DrawableDroplet
|
|
|
|
|
{
|
2020-11-27 02:56:57 +00:00
|
|
|
|
protected override float ScaleFactor => base.ScaleFactor / 2;
|
|
|
|
|
|
2020-11-30 10:04:09 +00:00
|
|
|
|
public DrawableTinyDroplet()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DrawableTinyDroplet([CanBeNull] TinyDroplet h)
|
2018-06-10 00:38:17 +00:00
|
|
|
|
: base(h)
|
|
|
|
|
{
|
2020-02-19 05:31:14 +00:00
|
|
|
|
}
|
2018-06-10 00:38:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|