summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/TweenProfilerApi.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/UI_Extension/Scripts/Animation/Tween/TweenProfilerApi.cs')
-rw-r--r--Assets/UI_Extension/Scripts/Animation/Tween/TweenProfilerApi.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/Assets/UI_Extension/Scripts/Animation/Tween/TweenProfilerApi.cs b/Assets/UI_Extension/Scripts/Animation/Tween/TweenProfilerApi.cs
new file mode 100644
index 0000000..0628291
--- /dev/null
+++ b/Assets/UI_Extension/Scripts/Animation/Tween/TweenProfilerApi.cs
@@ -0,0 +1,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
+ {
+
+ }
+ }
+} \ No newline at end of file