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