mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
25 lines
649 B
C#
25 lines
649 B
C#
using System.ComponentModel;
|
|
|
|
namespace NewHorizons.External.Modules
|
|
{
|
|
public class AsteroidBeltModule
|
|
{
|
|
public float InnerRadius { get; set; }
|
|
public float OuterRadius { get; set; }
|
|
|
|
[DefaultValue(20)]
|
|
public float MinSize { get; set; } = 20;
|
|
|
|
[DefaultValue(50)]
|
|
public float MaxSize { get; set; } = 50;
|
|
|
|
[DefaultValue(-1)]
|
|
public int Amount { get; set; } = -1;
|
|
|
|
public float Inclination { get; set; }
|
|
public float LongitudeOfAscendingNode { get; set; }
|
|
public int RandomSeed { get; set; }
|
|
public ProcGenModule ProcGen { get; set; }
|
|
}
|
|
}
|