19 lines
358 B
C#
19 lines
358 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Editor.Attributes
|
|
{
|
|
public class MaxAttribute : Attribute
|
|
{
|
|
public MaxAttribute(string _sValue)
|
|
{
|
|
Value = int.Parse(_sValue);
|
|
}
|
|
|
|
public int Value { get; private set; }
|
|
}
|
|
}
|