11 lines
196 B
C#
11 lines
196 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Unity.PerformanceTesting
|
||
|
{
|
||
|
internal class PerformanceTestHelper : MonoBehaviour
|
||
|
{
|
||
|
[SerializeField]
|
||
|
public PerformanceTest ActiveTest;
|
||
|
}
|
||
|
}
|