summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/TweenProfilerApi.cs
blob: 0628291e39dd5a972280a51671f3b4ae81c6f642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using UnityEngine.Scripting;

namespace UnityEngine
{
    public sealed class TweenProfilerApi
    {
        public static void AddMarker(string name, Object obj)
        {

        }
        public static void BeginSample(SampleType type)
        {

        }
        public static void EndSample(SampleType type)
        {

        }
        public enum SampleType
        {

        }
    }
}