1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 17:43:05 +08:00

Add base for bar lines.

This commit is contained in:
smoogipooo 2017-05-29 11:56:31 +09:00
parent 0fd053707d
commit e63108bd75
4 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,9 @@
using osu.Game.Rulesets.Objects;
namespace osu.Game.Rulesets.Mania.Objects
{
public class Barline : HitObject
{
public bool IsMajor;
}
}

View File

@ -0,0 +1,7 @@
namespace osu.Game.Rulesets.Mania.Objects.Drawables
{
public class DrawableBarline
{
}
}

View File

@ -0,0 +1,7 @@
namespace osu.Game.Rulesets.Mania.Objects.Drawables
{
public class DrawableMajorBarline
{
}
}

View File

@ -62,6 +62,8 @@
<Compile Include="Judgements\ManiaHitResult.cs" />
<Compile Include="Judgements\ManiaJudgement.cs" />
<Compile Include="ManiaDifficultyCalculator.cs" />
<Compile Include="Objects\Drawables\DrawableBarline.cs" />
<Compile Include="Objects\Drawables\DrawableMajorBarline.cs" />
<Compile Include="Objects\Drawables\DrawableHoldNote.cs" />
<Compile Include="Objects\Drawables\DrawableHoldNoteTick.cs" />
<Compile Include="Objects\Drawables\DrawableManiaHitObject.cs" />
@ -70,6 +72,7 @@
<Compile Include="Objects\Drawables\Pieces\NotePiece.cs" />
<Compile Include="Objects\Types\IHasColumn.cs" />
<Compile Include="Scoring\ManiaScoreProcessor.cs" />
<Compile Include="Objects\Barline.cs" />
<Compile Include="Objects\HoldNote.cs" />
<Compile Include="Objects\HoldNoteTick.cs" />
<Compile Include="Objects\ManiaHitObject.cs" />