Make SampleControlPoint clone the existing SampleInfo

This commit is contained in:
smoogipoo
2018-07-02 14:17:19 +09:00
parent 37495c34fa
commit 8b0c6a4c85
2 changed files with 9 additions and 5 deletions

View File

@ -32,5 +32,7 @@ namespace osu.Game.Audio
/// The sample volume.
/// </summary>
public int Volume;
public SampleInfo Clone() => (SampleInfo)MemberwiseClone();
}
}