osu/osu.Game.Rulesets.Catch/Objects/Drawable/DrawableBanana.cs

14 lines
350 B
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-06-10 00:38:17 +00:00
namespace osu.Game.Rulesets.Catch.Objects.Drawable
{
public class DrawableBanana : DrawableFruit
{
public DrawableBanana(Banana h)
2018-06-10 00:38:17 +00:00
: base(h)
{
}
}
}