fCraft.MineField.SetUpGreen C# (CSharp) Method

SetUpGreen() private static method

private static SetUpGreen ( ) : void
return void
        private static void SetUpGreen()
        {
            for ( int x = _map.Width; x >= 0; x-- ) {
                for ( int y = _map.Length; y >= _map.Length - 10; y-- ) {
                    _map.SetBlock( x, y, _ground, Block.Green );
                    _map.SetBlock( x, y, _ground - 1, Block.Black );
                }
            }
        }