Exemplo n.º 1
0
 /// <summary>
 ///     Constructor object for the Create Stars
 /// </summary>
 /// <param name="s">Our StarSystem</param>
 /// <param name="d">The Ddice we use</param>
 /// <param name="p">System Generation</param>
 public CreateStars(StarSystem s, Dice d, SystemGeneration p)
 {
     VelvetBag = d;
     OurSystem = s;
     InitializeComponent();
     SystemParent = p;
 }
Exemplo n.º 2
0
        /// <summary>
        ///     The constructor object for this form
        /// </summary>
        public CreatePlanets(StarSystem o, Dice d, SystemGeneration p)
        {
            OParent   = p;
            VelvetBag = d;
            OurSystem = o;

            InitializeComponent();
        }