using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace bbiwarg.Graphics { interface IGraphicElement { void draw(int width, int height); } }