using System; using System.Drawing; namespace ProgressODoom { public interface IGlossPainter : IDisposable { /// /// /// void PaintGloss(Rectangle box, Graphics g); /// void Resize(Rectangle box); /// event EventHandler PropertiesChanged; } }