Add project files.
This commit is contained in:
12
Assets/Cryville/Common/ComponentModel/PrecisionAttribute.cs
Normal file
12
Assets/Cryville/Common/ComponentModel/PrecisionAttribute.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace Cryville.Common.ComponentModel {
|
||||
[AttributeUsage(AttributeTargets.Property, Inherited = false)]
|
||||
public class PrecisionAttribute : Attribute {
|
||||
public PrecisionAttribute(double precision) {
|
||||
Precision = precision;
|
||||
}
|
||||
|
||||
public double Precision { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user