using System;
using System.Drawing;
namespace ProgressODoom {
///
public interface IProgressBackgroundPainter : IDisposable {
///
IGlossPainter GlossPainter { get; set; }
///
///
///
void PaintBackground(Rectangle box, Graphics gr);
///
void Resize(Rectangle box);
///
event EventHandler PropertiesChanged;
}
}