IPaintBackground.cs 301 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SmartCoalApplication.Core
  8. {
  9. public interface IPaintBackground
  10. {
  11. void PaintBackground(Graphics graphics, Rectangle clipRect);
  12. }
  13. }