15 lines
345 B
C#

namespace NewHorizons.External.Modules.Props.Quantum;
public class BaseQuantumGroupInfo
{
/// <summary>
/// Optional name to help identify this group
/// </summary>
public string name;
/// <summary>
/// List of props which will be used in this quantum group
/// </summary>
public QuantumDetailInfo[] details;
}