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
@@ -0,0 +1,31 @@
using System;
namespace UnityEngineInternal
{
// Token: 0x020004F9 RID: 1273
[AttributeUsage(AttributeTargets.Method)]
[Serializable]
public class TypeInferenceRuleAttribute : Attribute
{
// Token: 0x06003C45 RID: 15429 RVA: 0x0006A930 File Offset: 0x00068B30
public TypeInferenceRuleAttribute(TypeInferenceRules rule)
: this(rule.ToString())
{
}
// Token: 0x06003C46 RID: 15430 RVA: 0x0006A948 File Offset: 0x00068B48
public TypeInferenceRuleAttribute(string rule)
{
this._rule = rule;
}
// Token: 0x06003C47 RID: 15431 RVA: 0x0006A958 File Offset: 0x00068B58
public override string ToString()
{
return this._rule;
}
// Token: 0x04001268 RID: 4712
private readonly string _rule;
}
}