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.CrashReportHandler
{
// Token: 0x020002DB RID: 731
public static class CrashReportHandler
{
// Token: 0x17000AF5 RID: 2805
// (get) Token: 0x0600304B RID: 12363
// (set) Token: 0x0600304C RID: 12364
[ThreadAndSerializationSafe]
public static extern bool enableCaptureExceptions
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
}
}