new-horizons/NewHorizons/External/Props/QuantumSocketInfo.cs

15 lines
369 B
C#

using System.ComponentModel;
using Newtonsoft.Json;
namespace NewHorizons.External.Props
{
[JsonObject]
public class QuantumSocketInfo : GeneralPropInfo
{
/// <summary>
/// The probability any props that are part of this group will occupy this socket
/// </summary>
[DefaultValue(1f)] public float probability = 1f;
}
}