27 lines
816 B
C#
27 lines
816 B
C#
using System;
|
|
|
|
namespace UnityEngine.Experimental.UIElements.StyleSheets
|
|
{
|
|
// Token: 0x0200036F RID: 879
|
|
public interface ICustomStyles
|
|
{
|
|
// Token: 0x06003540 RID: 13632
|
|
void ApplyCustomProperty(string propertyName, ref Style<float> target);
|
|
|
|
// Token: 0x06003541 RID: 13633
|
|
void ApplyCustomProperty(string propertyName, ref Style<int> target);
|
|
|
|
// Token: 0x06003542 RID: 13634
|
|
void ApplyCustomProperty(string propertyName, ref Style<bool> target);
|
|
|
|
// Token: 0x06003543 RID: 13635
|
|
void ApplyCustomProperty(string propertyName, ref Style<Color> target);
|
|
|
|
// Token: 0x06003544 RID: 13636
|
|
void ApplyCustomProperty<T>(string propertyName, ref Style<T> target) where T : Object;
|
|
|
|
// Token: 0x06003545 RID: 13637
|
|
void ApplyCustomProperty(string propertyName, ref Style<string> target);
|
|
}
|
|
}
|