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
+21
View File
@@ -0,0 +1,21 @@
using System;
namespace UnityEngine.StyleSheets
{
// Token: 0x0200037C RID: 892
internal enum StyleValueType
{
// Token: 0x04000BF1 RID: 3057
Keyword,
// Token: 0x04000BF2 RID: 3058
Float,
// Token: 0x04000BF3 RID: 3059
Color,
// Token: 0x04000BF4 RID: 3060
ResourcePath,
// Token: 0x04000BF5 RID: 3061
Enum,
// Token: 0x04000BF6 RID: 3062
String
}
}