/// <summary> /// Draw a solid block on the screen /// </summary> /// <param name="x">x position of top left hand corner in pixels</param> /// <param name="y">y position of top left hand corner in pixels</param> /// <param name="width">width of the block in pixels</param> /// <param name="height">height of the block in pixels</param> public static void DrawBlock(int x, int y, int width, int height) { manager.DrawBlock(x, y, width, height); }