Files
bluflame/meshToolsV5/src/Editor/Attributes/Max.cs
2026-04-18 22:31:51 +02:00

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; }
}
}