1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 06:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Objects/Drawables/IHasCatchObjectState.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
724 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.
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Bindables;
using osuTK;
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>
public interface IHasCatchObjectState
{
PalpableCatchHitObject HitObject { get; }
2020-12-11 15:43:00 +08:00
Bindable<Color4> AccentColour { get; }
2020-12-11 15:43:00 +08:00
Bindable<bool> HyperDash { get; }
Bindable<int> IndexInBeatmap { get; }
Vector2 DisplaySize { get; }
2020-12-11 15:43:00 +08:00
float DisplayRotation { get; }
}
}