1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-10 01:50:46 +09:00

Renamed ObjectDiff container

This commit is contained in:
srb2thepast 2023-01-26 16:35:31 -05:00
parent 98da915b78
commit 4a01d5972f
4 changed files with 6 additions and 6 deletions

View file

@ -23,7 +23,7 @@ namespace PerformanceCalculatorGUI.Screens.ObjectInspection
private readonly CatchDifficultyHitObject[] difficultyHitObjects;
[Resolved]
private DebugValueList debugValueList { get; set; }
private ObjectDifficultyValuesContainer debugValueList { get; set; }
private DifficultyHitObject lasthit;
@ -52,7 +52,7 @@ namespace PerformanceCalculatorGUI.Screens.ObjectInspection
}
}
public void UpdateDebugList(DebugValueList valueList, DifficultyHitObject curDiffHit)
public void UpdateDebugList(ObjectDifficultyValuesContainer valueList, DifficultyHitObject curDiffHit)
{
CatchDifficultyHitObject catchDiffHit = (CatchDifficultyHitObject)curDiffHit;
string groupName = catchDiffHit.BaseObject.GetType().Name;