diff --git a/osu.Game/Beatmaps/Objects/Mania/HoldNote.cs b/osu.Game/Beatmaps/Objects/Mania/HoldNote.cs new file mode 100644 index 0000000000..523f6e4d7a --- /dev/null +++ b/osu.Game/Beatmaps/Objects/Mania/HoldNote.cs @@ -0,0 +1,10 @@ +//Copyright (c) 2007-2016 ppy Pty Ltd . +//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE + + +namespace osu.Game.Beatmaps.Objects.Mania +{ + public class HoldNote : Note + { + } +} diff --git a/osu.Game/Beatmaps/Objects/Mania/Note.cs b/osu.Game/Beatmaps/Objects/Mania/Note.cs new file mode 100644 index 0000000000..21b11f7f52 --- /dev/null +++ b/osu.Game/Beatmaps/Objects/Mania/Note.cs @@ -0,0 +1,10 @@ +//Copyright (c) 2007-2016 ppy Pty Ltd . +//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE + + +namespace osu.Game.Beatmaps.Objects.Mania +{ + public class Note : ManiaBaseHit + { + } +} diff --git a/osu.Game/osu.Game.csproj b/osu.Game/osu.Game.csproj index 6ca8aaf382..6e3eb3e015 100644 --- a/osu.Game/osu.Game.csproj +++ b/osu.Game/osu.Game.csproj @@ -50,7 +50,9 @@ + +