Files
27Aug2021-Cpp2IL-Dump/UnityEngine.UIModule/UnityEngine/UISystemProfilerApi.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

47 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
using UnityEngine.Bindings;
namespace UnityEngine
{
// Token: 0x0200000A RID: 10
[Token(Token = "0x200000A")]
[StaticAccessor("UI::SystemProfilerApi", StaticAccessorType.DoubleColon)]
[NativeHeader("Modules/UI/Canvas.h")]
public static class UISystemProfilerApi
{
// Token: 0x06000086 RID: 134 RVA: 0x00002066 File Offset: 0x00000266
[Token(Token = "0x6000086")]
[Address(RVA = "0x11F96B0", Offset = "0x11F86B0", VA = "0x1811F96B0")]
public static void BeginSample(UISystemProfilerApi.SampleType type)
{
}
// Token: 0x06000087 RID: 135 RVA: 0x00002066 File Offset: 0x00000266
[Token(Token = "0x6000087")]
[Address(RVA = "0x11F96F0", Offset = "0x11F86F0", VA = "0x1811F96F0")]
public static void EndSample(UISystemProfilerApi.SampleType type)
{
}
// Token: 0x06000088 RID: 136 RVA: 0x00002066 File Offset: 0x00000266
[Token(Token = "0x6000088")]
[Address(RVA = "0x11F9660", Offset = "0x11F8660", VA = "0x1811F9660")]
public static void AddMarker(string name, Object obj)
{
}
// Token: 0x0200000B RID: 11
[Token(Token = "0x200000B")]
public enum SampleType
{
// Token: 0x04000011 RID: 17
[Token(Token = "0x4000011")]
Layout,
// Token: 0x04000012 RID: 18
[Token(Token = "0x4000012")]
Render
}
}
}