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

12 lines
249 B
C#

using UnityEngine;
public class FPD_HorizontalLineAttribute : PropertyAttribute
{
public Color color;
public FPD_HorizontalLineAttribute(float r = 0.55f, float g = 0.55f, float b = 0.55f, float a = 0.7f)
{
color = new Color(r, g, b, a);
}
}