This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,84 @@
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace UnityEngine.UIElements.StyleSheets
{
// Token: 0x02000099 RID: 153
[Token(Token = "0x2000099")]
[DebuggerDisplay("id = {id}, keyword = {keyword}, number = {number}, boolean = {boolean}, color = {color}, resource = {resource}")]
[StructLayout(2)]
internal struct StyleValue
{
// Token: 0x060002E9 RID: 745 RVA: 0x000033C0 File Offset: 0x000015C0
[Token(Token = "0x60002E9")]
[Address(RVA = "0x1D93DF0", Offset = "0x1D92BF0", VA = "0x181D93DF0")]
public static StyleValue Create(StylePropertyID id)
{
return default(StyleValue);
}
// Token: 0x060002EA RID: 746 RVA: 0x000033D8 File Offset: 0x000015D8
[Token(Token = "0x60002EA")]
[Address(RVA = "0x1D93D80", Offset = "0x1D92B80", VA = "0x181D93D80")]
public static StyleValue Create(StylePropertyID id, StyleKeyword keyword)
{
return default(StyleValue);
}
// Token: 0x060002EB RID: 747 RVA: 0x000033F0 File Offset: 0x000015F0
[Token(Token = "0x60002EB")]
[Address(RVA = "0x1D93DB0", Offset = "0x1D92BB0", VA = "0x181D93DB0")]
public static StyleValue Create(StylePropertyID id, float number)
{
return default(StyleValue);
}
// Token: 0x060002EC RID: 748 RVA: 0x00003408 File Offset: 0x00001608
[Token(Token = "0x60002EC")]
[Address(RVA = "0x1D93E60", Offset = "0x1D92C60", VA = "0x181D93E60")]
public static StyleValue Create(StylePropertyID id, int number)
{
return default(StyleValue);
}
// Token: 0x060002ED RID: 749 RVA: 0x00003420 File Offset: 0x00001620
[Token(Token = "0x60002ED")]
[Address(RVA = "0x1D93E30", Offset = "0x1D92C30", VA = "0x181D93E30")]
public static StyleValue Create(StylePropertyID id, Color color)
{
return default(StyleValue);
}
// Token: 0x0400016C RID: 364
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x400016C")]
public StylePropertyID id;
// Token: 0x0400016D RID: 365
[global::Cpp2IlInjected.FieldOffset(Offset = "0x4")]
[Token(Token = "0x400016D")]
public StyleKeyword keyword;
// Token: 0x0400016E RID: 366
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x400016E")]
public float number;
// Token: 0x0400016F RID: 367
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x400016F")]
public Length length;
// Token: 0x04000170 RID: 368
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x4000170")]
public Color color;
// Token: 0x04000171 RID: 369
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x4000171")]
public GCHandle resource;
}
}