/// <summary> /// Initializes a new instance of the <see cref="Star"/> class. /// </summary> /// <param name="phy">The astrophysics interface.</param> /// <param name="st">The StellarType of the Star to create.</param> /// <param name="name">The name to give to the Star.</param> public Star(IScienceAstrophysics phy, StellarType st, string name) : base(phy, st, name) { }
/// <summary> /// Initializes a new instance of the <see cref="Star"/> class. /// </summary> /// <param name="phy">The astrophysics interface.</param> /// <param name="st">The StellarType of the Star to create.</param> public Star(IScienceAstrophysics phy, StellarType st) : base(phy, st) { }
/// <summary> /// Initializes a new instance of the <see cref="Star"/> class. /// </summary> /// <param name="st">The StellarType of the Star to create.</param> /// <param name="name">The name to give to the Star.</param> public Star(StellarType st, string name) : base(st, name) { }
/// <summary> /// Initializes a new instance of the <see cref="Star"/> class. /// </summary> /// <param name="st">The StellarType of the Star to create.</param> public Star(StellarType st) : base(st) { }