Files
UltimateFishing2020/Assets/Scripts/Assembly-CSharp/Boxophobic/BInteractiveAttribute.cs
2026-03-04 10:03:45 +08:00

26 lines
326 B
C#

using UnityEngine;
namespace Boxophobic
{
public class BInteractiveAttribute : PropertyAttribute
{
public int Value;
public string Keyword;
public int Type;
public BInteractiveAttribute(int v)
{
Type = 0;
Value = v;
}
public BInteractiveAttribute(string k)
{
Type = 1;
Keyword = k;
}
}
}