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