15 lines
194 B
C#
15 lines
194 B
C#
using UnityEngine;
|
|
|
|
namespace Boxophobic
|
|
{
|
|
public class BCategoryAttribute : PropertyAttribute
|
|
{
|
|
public string Category;
|
|
|
|
public BCategoryAttribute(string c)
|
|
{
|
|
Category = c;
|
|
}
|
|
}
|
|
}
|