mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:58:21 +08:00
16 lines
488 B
C#
16 lines
488 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Types;
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects
|
|
{
|
|
public abstract class ManiaHitObject : HitObject, IHasColumn
|
|
{
|
|
public virtual int Column { get; set; }
|
|
|
|
protected override HitWindows CreateHitWindows() => new ManiaHitWindows();
|
|
}
|
|
}
|