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
+18
View File
@@ -0,0 +1,18 @@
using System;
namespace UnityEngine
{
// Token: 0x02000454 RID: 1108
[AttributeUsage(AttributeTargets.Field, Inherited = true, AllowMultiple = true)]
public class HeaderAttribute : PropertyAttribute
{
// Token: 0x060038BD RID: 14525 RVA: 0x00061D0C File Offset: 0x0005FF0C
public HeaderAttribute(string header)
{
this.header = header;
}
// Token: 0x0400112B RID: 4395
public readonly string header;
}
}