new-horizons/NewHorizons/External/IPlanetConfig.cs
2021-12-26 01:48:02 -05:00

23 lines
629 B
C#

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