mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:47:52 +08:00
Throw not implemented exceptions
This commit is contained in:
parent
596fda3c1f
commit
d56e99865c
@ -314,17 +314,11 @@ namespace osu.Game.Beatmaps.Formats
|
||||
writer.Write(Environment.NewLine);
|
||||
}
|
||||
|
||||
private void handleTaikoHitObject(TextWriter writer, HitObject hitObject)
|
||||
{
|
||||
}
|
||||
private void handleTaikoHitObject(TextWriter writer, HitObject hitObject) => throw new NotImplementedException();
|
||||
|
||||
private void handleCatchHitObject(TextWriter writer, HitObject hitObject)
|
||||
{
|
||||
}
|
||||
private void handleCatchHitObject(TextWriter writer, HitObject hitObject) => throw new NotImplementedException();
|
||||
|
||||
private void handleManiaHitObject(TextWriter writer, HitObject hitObject)
|
||||
{
|
||||
}
|
||||
private void handleManiaHitObject(TextWriter writer, HitObject hitObject) => throw new NotImplementedException();
|
||||
|
||||
private string getSampleBank(IList<HitSampleInfo> samples, bool banksOnly = false, bool zeroBanks = false)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user