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

9 lines
229 B
C#

using System;
namespace Cryville.Common.ComponentModel {
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class LogarithmicScaleAttribute : Attribute {
public LogarithmicScaleAttribute() { }
}
}