Nick J. Connors 52584c278d Icospheres and API
New mesh generation for heightmap planets.
Made the API work.
Added air to planets.
Ambient light works.
Atmospheres work.
2021-12-17 22:19:08 -05:00

17 lines
388 B
C#

using NewHorizons.Utility;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewHorizons.External
{
public class SpawnModule : Module
{
public MVector3 PlayerSpawnPoint { get; set; }
public MVector3 ShipSpawnPoint { get; set; }
public bool StartWithSuit { get; set; }
}
}