WuhuIslandTesting/Library/PackageCache/com.unity.performance.profile-analyzer@1.1.1/Editor/MarkerPairing.cs

13 lines
222 B
C#
Raw Normal View History

2025-01-07 02:06:59 +01:00
using System;
namespace UnityEditor.Performance.ProfileAnalyzer
{
[Serializable]
internal class MarkerPairing
{
public string name;
public int leftIndex;
public int rightIndex;
}
}