13 lines
224 B
C#
13 lines
224 B
C#
namespace Dashboard.Windowing
|
|
{
|
|
public interface IPaintable
|
|
{
|
|
event EventHandler Painting;
|
|
|
|
/// <summary>
|
|
/// Paint this paintable object.
|
|
/// </summary>
|
|
void Paint();
|
|
}
|
|
}
|