Files
OMG/Library/PackageCache/com.unity.performance.profile-analyzer@1.2.3/Editor/MarkerPairing.cs
2026-02-16 14:02:58 +01:00

13 lines
222 B
C#

using System;
namespace UnityEditor.Performance.ProfileAnalyzer
{
[Serializable]
internal class MarkerPairing
{
public string name;
public int leftIndex;
public int rightIndex;
}
}