mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
15 lines
347 B
C#
15 lines
347 B
C#
namespace NewHorizons.External.Modules.Props.Quantum;
|
|
|
|
public class BaseQuantumGroupInfo
|
|
{
|
|
/// <summary>
|
|
/// Optional name to help identify this group
|
|
/// </summary>
|
|
public string rename;
|
|
|
|
/// <summary>
|
|
/// List of props which will be used in this quantum group
|
|
/// </summary>
|
|
public QuantumDetailInfo[] details;
|
|
}
|