scripts
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user