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
+22
View File
@@ -0,0 +1,22 @@
using System;
namespace UnityEngine
{
// Token: 0x02000451 RID: 1105
[AttributeUsage(AttributeTargets.Field, Inherited = true, AllowMultiple = true)]
public class ContextMenuItemAttribute : PropertyAttribute
{
// Token: 0x060038B9 RID: 14521 RVA: 0x00061CC0 File Offset: 0x0005FEC0
public ContextMenuItemAttribute(string name, string function)
{
this.name = name;
this.function = function;
}
// Token: 0x04001127 RID: 4391
public readonly string name;
// Token: 0x04001128 RID: 4392
public readonly string function;
}
}