14 lines
245 B
C#
14 lines
245 B
C#
using UnityEngine;
|
|
|
|
namespace Febucci.Attributes
|
|
{
|
|
public class MinValueAttribute : PropertyAttribute
|
|
{
|
|
public float min = 0;
|
|
public MinValueAttribute(float min)
|
|
{
|
|
this.min = min;
|
|
}
|
|
}
|
|
|
|
} |