87 lines
2.6 KiB
C#
87 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace UnityEngine.UIElements.StyleSheets
|
|
{
|
|
// Token: 0x02000096 RID: 150
|
|
[Token(Token = "0x2000096")]
|
|
internal static class StyleSheetCache
|
|
{
|
|
// Token: 0x060002E5 RID: 741 RVA: 0x00003378 File Offset: 0x00001578
|
|
[Token(Token = "0x60002E5")]
|
|
[Address(RVA = "0x66EC90", Offset = "0x66DC90", VA = "0x18066EC90")]
|
|
internal static StyleValue GetInitialValue(StylePropertyID propertyId)
|
|
{
|
|
return default(StyleValue);
|
|
}
|
|
|
|
// Token: 0x04000164 RID: 356
|
|
[Token(Token = "0x4000164")]
|
|
private static StyleSheetCache.SheetHandleKeyComparer s_Comparer;
|
|
|
|
// Token: 0x04000165 RID: 357
|
|
[Token(Token = "0x4000165")]
|
|
private static Dictionary<StyleSheetCache.SheetHandleKey, int> s_EnumToIntCache;
|
|
|
|
// Token: 0x04000166 RID: 358
|
|
[Token(Token = "0x4000166")]
|
|
private static Dictionary<StyleSheetCache.SheetHandleKey, StylePropertyID[]> s_RulePropertyIDsCache;
|
|
|
|
// Token: 0x04000167 RID: 359
|
|
[Token(Token = "0x4000167")]
|
|
private static Dictionary<string, StylePropertyID> s_NameToIDCache;
|
|
|
|
// Token: 0x04000168 RID: 360
|
|
[Token(Token = "0x4000168")]
|
|
private static StyleValue[] s_InitialStyleValues;
|
|
|
|
// Token: 0x04000169 RID: 361
|
|
[Token(Token = "0x4000169")]
|
|
private static Dictionary<string, string> s_DeprecatedNames;
|
|
|
|
// Token: 0x02000097 RID: 151
|
|
[Token(Token = "0x2000097")]
|
|
private struct SheetHandleKey
|
|
{
|
|
// Token: 0x0400016A RID: 362
|
|
[FieldOffset(Offset = "0x0")]
|
|
[Token(Token = "0x400016A")]
|
|
public readonly int sheetInstanceID;
|
|
|
|
// Token: 0x0400016B RID: 363
|
|
[FieldOffset(Offset = "0x4")]
|
|
[Token(Token = "0x400016B")]
|
|
public readonly int index;
|
|
}
|
|
|
|
// Token: 0x02000098 RID: 152
|
|
[Token(Token = "0x2000098")]
|
|
private class SheetHandleKeyComparer : IEqualityComparer<StyleSheetCache.SheetHandleKey>
|
|
{
|
|
// Token: 0x060002E6 RID: 742 RVA: 0x00003390 File Offset: 0x00001590
|
|
[Token(Token = "0x60002E6")]
|
|
[Address(RVA = "0x66DDE0", Offset = "0x66CDE0", VA = "0x18066DDE0", Slot = "4")]
|
|
public bool Equals(StyleSheetCache.SheetHandleKey x, StyleSheetCache.SheetHandleKey y)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x060002E7 RID: 743 RVA: 0x000033A8 File Offset: 0x000015A8
|
|
[Token(Token = "0x60002E7")]
|
|
[Address(RVA = "0x66DE00", Offset = "0x66CE00", VA = "0x18066DE00", Slot = "5")]
|
|
public int GetHashCode(StyleSheetCache.SheetHandleKey key)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x060002E8 RID: 744 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002E8")]
|
|
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
|
public SheetHandleKeyComparer()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|