Files
crtr/Assets/Cryville/Common/ComponentModel/StepAttribute.cs
2022-09-30 17:32:21 +08:00

12 lines
267 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; }
}
}