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

44 lines
1.2 KiB
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-04-13 18:19:50 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
using JetBrains.Annotations;
2018-04-13 18:19:50 +09:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.Objects.Drawables;
namespace osu.Game.Rulesets.Catch.Objects.Drawables
2018-04-13 18:19:50 +09:00
{
public class DrawableBananaShower : DrawableCatchHitObject
2018-04-13 18:19:50 +09:00
{
private readonly Container bananaContainer;
public DrawableBananaShower()
: this(null)
{
}
public DrawableBananaShower([CanBeNull] BananaShower s)
2018-04-13 18:19:50 +09:00
: base(s)
{
RelativeSizeAxes = Axes.X;
Origin = Anchor.BottomLeft;
AddInternal(bananaContainer = new Container { RelativeSizeAxes = Axes.Both });
2018-04-13 18:19:50 +09:00
}
protected override void AddNestedHitObject(DrawableHitObject hitObject)
2018-04-13 18:19:50 +09:00
{
base.AddNestedHitObject(hitObject);
2019-10-17 12:53:54 +09:00
bananaContainer.Add(hitObject);
}
protected override void ClearNestedHitObjects()
{
base.ClearNestedHitObjects();
bananaContainer.Clear(false);
2018-04-13 18:19:50 +09:00
}
}
}