diff --git a/osu.Game/Beatmaps/Objects/Catch/Droplet.cs b/osu.Game/Beatmaps/Objects/Catch/Droplet.cs new file mode 100644 index 0000000000..7f68f2125b --- /dev/null +++ b/osu.Game/Beatmaps/Objects/Catch/Droplet.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.Catch +{ + public class Droplet : CatchBaseHit + { + } +} diff --git a/osu.Game/Beatmaps/Objects/Catch/Fruit.cs b/osu.Game/Beatmaps/Objects/Catch/Fruit.cs new file mode 100644 index 0000000000..f8b74722bd --- /dev/null +++ b/osu.Game/Beatmaps/Objects/Catch/Fruit.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.Catch +{ + public class Fruit : CatchBaseHit + { + } +} diff --git a/osu.Game/osu.Game.csproj b/osu.Game/osu.Game.csproj index 6e3eb3e015..bd2bbf130a 100644 --- a/osu.Game/osu.Game.csproj +++ b/osu.Game/osu.Game.csproj @@ -50,6 +50,8 @@ + +