Don't use osu! mode parser for other game modes for now (convert still works).

This commit is contained in:
Dean Herbert
2017-02-15 12:36:47 +09:00
parent f2b0fd4de0
commit 580584a015
5 changed files with 18 additions and 3 deletions

View File

@ -0,0 +1,14 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Modes.Objects
{
/// <summary>
/// Returns null HitObjects but at least allows us to run.
/// </summary>
public class NullHitObjectParser : HitObjectParser
{
public override HitObject Parse(string text) => null;
}
}