ISAP/Library/PackageCache/com.unity.performance.profi.../Editor/MarkerPairing.cs

13 lines
222 B
C#

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