new-horizons/NewHorizons/External/IPlanetConfig.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

19 lines
482 B
C#

using NewHorizons.Utility;
namespace NewHorizons.External
{
public interface IPlanetConfig
{
string Name { get; }
bool Destroy { get; }
BaseModule Base {get;}
AtmosphereModule Atmosphere { get; }
OrbitModule Orbit { get; }
RingModule Ring { get; }
HeightMapModule HeightMap { get; }
ProcGenModule ProcGen { get; }
AsteroidBeltModule AsteroidBelt { get; }
SpawnModule Spawn { get; }
}
}