コード例 #1
0
ファイル: Beatmap.cs プロジェクト: rorre/MapsetParser
 /// <summary> Returns whether two stackable objects are close enough in time to be stacked. Measures from end to start Hitsoundtime. </summary>
 private bool MeetsStackTime(Stackable anObject, Stackable anOtherObject) =>
 anOtherObject.time - anObject.GetEndTime() <= StackTimeThreshold();