new-horizons/NewHorizons/OrbitalPhysics/ParameterizedAstroObject.cs
2021-12-25 02:26:09 -05:00

14 lines
275 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewHorizons.OrbitalPhysics
{
public class ParameterizedAstroObject : AstroObject
{
public KeplerElements keplerElements;
}
}