mirror of
https://github.com/ppy/osu.git
synced 2025-02-03 18:12:56 +08:00
24 lines
713 B
C#
24 lines
713 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
|
{
|
|
public abstract class CatchBaseHit : HitObject
|
|
{
|
|
public float Position { get; set; }
|
|
|
|
public Color4 ComboColour { get; set; } = Color4.Gray;
|
|
public int ComboIndex { get; set; }
|
|
|
|
public virtual bool NewCombo { get; set; }
|
|
|
|
/// <summary>
|
|
/// The next fruit starts a new combo. Used for explodey.
|
|
/// </summary>
|
|
public virtual bool LastInCombo { get; set; }
|
|
}
|
|
}
|