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: 0x02000455 RID: 1109
[AttributeUsage(AttributeTargets.Field, Inherited = true, AllowMultiple = false)]
public sealed class RangeAttribute : PropertyAttribute
{
// Token: 0x060038BE RID: 14526 RVA: 0x00061D1C File Offset: 0x0005FF1C
public RangeAttribute(float min, float max)
{
this.min = min;
this.max = max;
}
// Token: 0x0400112C RID: 4396
public readonly float min;
// Token: 0x0400112D RID: 4397
public readonly float max;
}
}