Lawnmover.Pattern.Pattern C# (CSharp) 메소드

Pattern() 공개 메소드

public Pattern ( int width, int height ) : System
width int
height int
리턴 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];
        }