public singleSateliteGroup( int Length, int bottom, int top )
		{
			list = new structures.singleSattelite[ Length ];

			for ( int s = 0; s < Length; s ++ )
				list[ s ].path = new byte[ Form1.game.width ];

			Top = top;
			Bottom = bottom;
		}
Exemple #2
0
        public singleSateliteGroup(int Length, int bottom, int top)
        {
            list = new structures.singleSattelite[Length];

            for (int s = 0; s < Length; s++)
            {
                list[s].path = new byte[Form1.game.width];
            }

            Top    = top;
            Bottom = bottom;
        }