12 lines
222 B
C#
12 lines
222 B
C#
using System;
|
|
|
|
namespace UnityEditor.Performance.ProfileAnalyzer
|
|
{
|
|
[Serializable]
|
|
internal class MarkerPairing
|
|
{
|
|
public string name;
|
|
public int leftIndex;
|
|
public int rightIndex;
|
|
}
|
|
}
|