Files
2026-03-04 10:03:45 +08:00

15 lines
194 B
C#

using UnityEngine;
namespace Boxophobic
{
public class BCategoryAttribute : PropertyAttribute
{
public string Category;
public BCategoryAttribute(string c)
{
Category = c;
}
}
}