IGraphicElement.cs 235 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace bbiwarg.Graphics
  7. {
  8. interface IGraphicElement
  9. {
  10. void draw(int width, int height);
  11. }
  12. }