Files
Fishing2/Assets/Scripts/Editor/Builder/Attributes/BuildTaskInfoAttribute.cs
2025-05-10 12:49:47 +08:00

20 lines
400 B
C#

using System;
namespace NBF
{
[AttributeUsage(AttributeTargets.Class)]
public class BuildTaskInfoAttribute : Attribute
{
public string Name;
public int Id;
public bool Visable;
public BuildTaskInfoAttribute(int id, string name, bool visable = true)
{
Id = id;
Name = name;
Visable = visable;
}
}
}