Files
crtr/Assets/Cryville/Common/ComponentModel/StepAttribute.cs
2023-03-26 23:25:20 +08:00

12 lines
264 B
C#

using System;
namespace Cryville.Common.ComponentModel {
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class StepAttribute : Attribute {
public StepAttribute(float step) {
Step = step;
}
public float Step { get; set; }
}
}