GR.Input.Button.Button C# (CSharp) Method

Button() public method

public Button ( int width, int height ) : System
width int
height int
return System
        public Button(int width, int height)
        {
            clicks = new int[width, height];

            this.width = width;
            this.height = height;
        }