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
|
|
|
|
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-06-10 08:38:17 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
|
|
|
|
{
|
|
|
|
|
public class DrawableTinyDroplet : DrawableDroplet
|
|
|
|
|
{
|
2018-08-02 14:28:48 +08:00
|
|
|
|
public DrawableTinyDroplet(TinyDroplet h)
|
2018-06-10 08:38:17 +08:00
|
|
|
|
: base(h)
|
|
|
|
|
{
|
|
|
|
|
Size = new Vector2((float)CatchHitObject.OBJECT_RADIUS) / 8;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|