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