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
|
|
|
|
|
2020-02-19 05:31:14 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-06-10 00:38:17 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
|
|
|
|
{
|
|
|
|
|
public class DrawableTinyDroplet : DrawableDroplet
|
|
|
|
|
{
|
2018-08-02 06:28:48 +00:00
|
|
|
|
public DrawableTinyDroplet(TinyDroplet h)
|
2018-06-10 00:38:17 +00:00
|
|
|
|
: base(h)
|
|
|
|
|
{
|
2020-02-19 05:31:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
Scale /= 2;
|
2018-06-10 00:38:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|