Lawnmover.Pattern.Pattern C# (CSharp) Method

Pattern() public method

public Pattern ( int width, int height ) : System
width int
height int
return System
        public Pattern(int width, int height)
        {
            this.width = width;
            this.height = height;
            this.cells = new int[height, width];
            this.rowmoves = new int[height];
            this.columnmoves = new int[width];
        }