2020-12-08 20:29: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.
|
|
|
|
|
|
|
|
using osu.Framework.Bindables;
|
2020-12-10 19:43:01 +08:00
|
|
|
using osuTK;
|
2020-12-08 20:29:03 +08:00
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawables
|
|
|
|
{
|
2020-12-08 22:11:22 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Provides a visual state of a <see cref="PalpableCatchHitObject"/>.
|
|
|
|
/// </summary>
|
2020-12-08 20:29:03 +08:00
|
|
|
public interface IHasCatchObjectState
|
|
|
|
{
|
2020-12-08 21:38:10 +08:00
|
|
|
PalpableCatchHitObject HitObject { get; }
|
2020-12-11 15:43:00 +08:00
|
|
|
|
2020-12-08 20:29:03 +08:00
|
|
|
Bindable<Color4> AccentColour { get; }
|
2020-12-11 15:43:00 +08:00
|
|
|
|
2020-12-08 20:29:03 +08:00
|
|
|
Bindable<bool> HyperDash { get; }
|
|
|
|
|
2021-06-07 13:49:37 +08:00
|
|
|
Bindable<int> IndexInBeatmap { get; }
|
|
|
|
|
2020-12-10 19:43:01 +08:00
|
|
|
Vector2 DisplaySize { get; }
|
2020-12-11 15:43:00 +08:00
|
|
|
|
2020-12-10 19:43:01 +08:00
|
|
|
float DisplayRotation { get; }
|
2020-12-08 20:29:03 +08:00
|
|
|
}
|
|
|
|
}
|