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

24 lines
332 B
C#

using UnityEngine;
namespace Boxophobic
{
public class BMessageAttribute : PropertyAttribute
{
public string Type;
public string Message;
public float Top;
public float Down;
public BMessageAttribute(string t, string m, float top, float down)
{
Type = t;
Message = m;
Top = top;
Down = down;
}
}
}