new-horizons/NewHorizons/External/AsteroidBeltModule.cs
Nick J. Connors c977cb5333 Decluttered logs and added asteroid belts
Also includes some basic proc gen
2021-12-19 02:37:52 -05:00

17 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewHorizons.External
{
public class AsteroidBeltModule : Module
{
public float InnerRadius { get; set; }
public float OuterRadius { get; set; }
public float Inclination { get; set; }
public float LongitudeOfAscendingNode { get; set; }
}
}