mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:27:29 +08:00
Add doc comments a bit
This commit is contained in:
parent
1f36bbecd1
commit
5ca98b0033
@ -12,6 +12,9 @@ using osuTK.Graphics;
|
||||
|
||||
namespace osu.Game.Rulesets.Catch.Objects.Drawables
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a <see cref="PalpableCatchHitObject"/> caught by the catcher.
|
||||
/// </summary>
|
||||
[Cached(typeof(IHasCatchObjectState))]
|
||||
public abstract class CaughtObject : SkinnableDrawable, IHasCatchObjectState
|
||||
{
|
||||
|
@ -7,6 +7,9 @@ using osuTK.Graphics;
|
||||
|
||||
namespace osu.Game.Rulesets.Catch.Objects.Drawables
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides a visual state of a <see cref="PalpableCatchHitObject"/>.
|
||||
/// </summary>
|
||||
public interface IHasCatchObjectState
|
||||
{
|
||||
PalpableCatchHitObject HitObject { get; }
|
||||
@ -17,6 +20,9 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawables
|
||||
Vector2 Scale { get; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Provides a visual state of a <see cref="Fruit"/>.
|
||||
/// </summary>
|
||||
public interface IHasFruitState : IHasCatchObjectState
|
||||
{
|
||||
Bindable<FruitVisualRepresentation> VisualRepresentation { get; }
|
||||
|
Loading…
Reference in New Issue
Block a user