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
+32
View File
@@ -0,0 +1,32 @@
using System;
namespace UnityEngine.StyleSheets
{
// Token: 0x02000374 RID: 884
[Serializable]
internal class StyleRule
{
// Token: 0x17000C3F RID: 3135
// (get) Token: 0x0600356C RID: 13676 RVA: 0x00059604 File Offset: 0x00057804
// (set) Token: 0x0600356D RID: 13677 RVA: 0x00059620 File Offset: 0x00057820
public StyleProperty[] properties
{
get
{
return this.m_Properties;
}
internal set
{
this.m_Properties = value;
}
}
// Token: 0x04000BCD RID: 3021
[SerializeField]
private StyleProperty[] m_Properties;
// Token: 0x04000BCE RID: 3022
[SerializeField]
internal int line;
}
}