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

9 lines
226 B
C#

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