1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 08:32:57 +08:00

Fix some base classes not being abstract.

This commit is contained in:
Dean Herbert 2016-09-02 18:43:46 +09:00
parent c75d74c84c
commit 0a0c8e2014
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
namespace osu.Game.Beatmaps.Objects.Catch
{
class CatchBaseHit : BaseHit
public abstract class CatchBaseHit : BaseHit
{
public float Position;
}

View File

@ -4,7 +4,7 @@
namespace osu.Game.Beatmaps.Objects.Mania
{
class ManiaBaseHit : BaseHit
public abstract class ManiaBaseHit : BaseHit
{
public int Column;
}