mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Throw not implemented exceptions
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user