This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using Cpp2IlInjected;
namespace UnityEngine.Scripting.APIUpdating
{
// Token: 0x02000192 RID: 402
[Token(Token = "0x2000192")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Delegate)]
public class MovedFromAttribute : Attribute
{
// Token: 0x06000DEB RID: 3563 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000DEB")]
[Address(RVA = "0x2CBE8F0", Offset = "0x2CBD6F0", VA = "0x182CBE8F0")]
public MovedFromAttribute(string sourceNamespace)
{
}
// Token: 0x04000577 RID: 1399
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000577")]
internal MovedFromAttributeData data;
}
}
@@ -0,0 +1,53 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace UnityEngine.Scripting.APIUpdating
{
// Token: 0x02000191 RID: 401
[Token(Token = "0x2000191")]
internal struct MovedFromAttributeData
{
// Token: 0x06000DEA RID: 3562 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000DEA")]
[Address(RVA = "0x2CBE8C0", Offset = "0x2CBD6C0", VA = "0x182CBE8C0")]
public void Set(bool autoUpdateAPI, [Optional] string sourceNamespace, [Optional] string sourceAssembly, [Optional] string sourceClassName)
{
}
// Token: 0x04000570 RID: 1392
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000570")]
public string className;
// Token: 0x04000571 RID: 1393
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x4000571")]
public string nameSpace;
// Token: 0x04000572 RID: 1394
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000572")]
public string assembly;
// Token: 0x04000573 RID: 1395
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000573")]
public bool classHasChanged;
// Token: 0x04000574 RID: 1396
[global::Cpp2IlInjected.FieldOffset(Offset = "0x19")]
[Token(Token = "0x4000574")]
public bool nameSpaceHasChanged;
// Token: 0x04000575 RID: 1397
[global::Cpp2IlInjected.FieldOffset(Offset = "0x1A")]
[Token(Token = "0x4000575")]
public bool assemblyHasChanged;
// Token: 0x04000576 RID: 1398
[global::Cpp2IlInjected.FieldOffset(Offset = "0x1B")]
[Token(Token = "0x4000576")]
public bool autoUdpateAPI;
}
}