From 49110cf8d8073c4876fdabf01f535d59d6c38822 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 2 Sep 2016 18:44:02 +0900 Subject: [PATCH] Add mania Note and HoldNote. --- osu.Game/Beatmaps/Objects/Mania/HoldNote.cs | 10 ++++++++++ osu.Game/Beatmaps/Objects/Mania/Note.cs | 10 ++++++++++ osu.Game/osu.Game.csproj | 2 ++ 3 files changed, 22 insertions(+) create mode 100644 osu.Game/Beatmaps/Objects/Mania/HoldNote.cs create mode 100644 osu.Game/Beatmaps/Objects/Mania/Note.cs 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 @@ + +