This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
using System.Runtime.CompilerServices;
using UnityEngine.Scripting;
namespace UnityEngine.Analytics
{
// Token: 0x020002DC RID: 732
public static class PerformanceReporting
{
// Token: 0x17000AF6 RID: 2806
// (get) Token: 0x0600304D RID: 12365
// (set) Token: 0x0600304E RID: 12366
[ThreadAndSerializationSafe]
public static extern bool enabled
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
}
}