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,32 @@
using System;
namespace UnityEngine.Scripting.APIUpdating
{
// Token: 0x020004EB RID: 1259
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Delegate)]
public class MovedFromAttribute : Attribute
{
// Token: 0x06003C20 RID: 15392 RVA: 0x00069E00 File Offset: 0x00068000
public MovedFromAttribute(string sourceNamespace)
: this(sourceNamespace, false)
{
}
// Token: 0x06003C21 RID: 15393 RVA: 0x00069E0C File Offset: 0x0006800C
public MovedFromAttribute(string sourceNamespace, bool isInDifferentAssembly)
{
this.Namespace = sourceNamespace;
this.IsInDifferentAssembly = isInDifferentAssembly;
}
// Token: 0x17000D94 RID: 3476
// (get) Token: 0x06003C22 RID: 15394 RVA: 0x00069E24 File Offset: 0x00068024
// (set) Token: 0x06003C23 RID: 15395 RVA: 0x00069E40 File Offset: 0x00068040
public string Namespace { get; private set; }
// Token: 0x17000D95 RID: 3477
// (get) Token: 0x06003C24 RID: 15396 RVA: 0x00069E4C File Offset: 0x0006804C
// (set) Token: 0x06003C25 RID: 15397 RVA: 0x00069E68 File Offset: 0x00068068
public bool IsInDifferentAssembly { get; private set; }
}
}
@@ -0,0 +1,10 @@
using System;
namespace UnityEngine.Scripting
{
// Token: 0x020004EA RID: 1258
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = false)]
internal class GenerateManagedProxyAttribute : Attribute
{
}
}
@@ -0,0 +1,9 @@
using System;
namespace UnityEngine.Scripting
{
// Token: 0x020003C7 RID: 967
internal class GeneratedByOldBindingsGeneratorAttribute : Attribute
{
}
}
@@ -0,0 +1,10 @@
using System;
namespace UnityEngine.Scripting
{
// Token: 0x020004E7 RID: 1255
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field, Inherited = false)]
public class PreserveAttribute : Attribute
{
}
}
@@ -0,0 +1,43 @@
using System;
namespace UnityEngine.Scripting
{
// Token: 0x020004E9 RID: 1257
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Interface, Inherited = false)]
internal class RequiredByNativeCodeAttribute : Attribute
{
// Token: 0x06003C17 RID: 15383 RVA: 0x00069D64 File Offset: 0x00067F64
public RequiredByNativeCodeAttribute()
{
}
// Token: 0x06003C18 RID: 15384 RVA: 0x00069D70 File Offset: 0x00067F70
public RequiredByNativeCodeAttribute(string name)
{
this.Name = name;
}
// Token: 0x06003C19 RID: 15385 RVA: 0x00069D80 File Offset: 0x00067F80
public RequiredByNativeCodeAttribute(bool optional)
{
this.Optional = optional;
}
// Token: 0x06003C1A RID: 15386 RVA: 0x00069D90 File Offset: 0x00067F90
public RequiredByNativeCodeAttribute(string name, bool optional)
{
this.Name = name;
this.Optional = optional;
}
// Token: 0x17000D92 RID: 3474
// (get) Token: 0x06003C1B RID: 15387 RVA: 0x00069DA8 File Offset: 0x00067FA8
// (set) Token: 0x06003C1C RID: 15388 RVA: 0x00069DC4 File Offset: 0x00067FC4
public string Name { get; set; }
// Token: 0x17000D93 RID: 3475
// (get) Token: 0x06003C1D RID: 15389 RVA: 0x00069DD0 File Offset: 0x00067FD0
// (set) Token: 0x06003C1E RID: 15390 RVA: 0x00069DEC File Offset: 0x00067FEC
public bool Optional { get; set; }
}
}
@@ -0,0 +1,25 @@
using System;
namespace UnityEngine.Scripting
{
// Token: 0x020004E8 RID: 1256
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Interface, Inherited = false)]
internal class UsedByNativeCodeAttribute : Attribute
{
// Token: 0x06003C13 RID: 15379 RVA: 0x00069D20 File Offset: 0x00067F20
public UsedByNativeCodeAttribute()
{
}
// Token: 0x06003C14 RID: 15380 RVA: 0x00069D2C File Offset: 0x00067F2C
public UsedByNativeCodeAttribute(string name)
{
this.Name = name;
}
// Token: 0x17000D91 RID: 3473
// (get) Token: 0x06003C15 RID: 15381 RVA: 0x00069D3C File Offset: 0x00067F3C
// (set) Token: 0x06003C16 RID: 15382 RVA: 0x00069D58 File Offset: 0x00067F58
public string Name { get; set; }
}
}