23 lines
553 B
C#
23 lines
553 B
C#
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;
|
|
}
|
|
}
|