mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 13:17:26 +08:00
16 lines
383 B
C#
16 lines
383 B
C#
|
using osu.Game.Modes.Objects.Types;
|
|||
|
using OpenTK;
|
|||
|
using OpenTK.Graphics;
|
|||
|
|
|||
|
namespace osu.Game.Modes.Objects
|
|||
|
{
|
|||
|
internal class Hit : HitObject, IHasPosition, IHasCombo
|
|||
|
{
|
|||
|
public Vector2 Position { get; set; }
|
|||
|
public Color4 ComboColour { get; set; }
|
|||
|
|
|||
|
public bool NewCombo { get; set; }
|
|||
|
public int ComboIndex { get; set; }
|
|||
|
}
|
|||
|
}
|