mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Remove unused method
This commit is contained in:
@ -520,10 +520,7 @@ namespace osu.Game.Rulesets.Objects.Legacy
|
||||
};
|
||||
|
||||
public override HitSampleInfo With(Optional<string> name = default, Optional<string?> bank = default, Optional<string?> suffix = default, Optional<int> volume = default)
|
||||
=> With(volume: volume);
|
||||
|
||||
public FileHitSampleInfo With(Optional<string> filename = default, Optional<int> volume = default)
|
||||
=> new FileHitSampleInfo(filename.GetOr(Filename), volume.GetOr(Volume));
|
||||
=> new FileHitSampleInfo(Filename, volume.GetOr(Volume));
|
||||
|
||||
public bool Equals(FileHitSampleInfo? other)
|
||||
=> base.Equals(other) && Filename == other.Filename;
|
||||
|
Reference in New Issue
Block a user