mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
17 lines
391 B
C#
17 lines
391 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace ProgressODoom {
|
|
public interface IGlossPainter : IDisposable {
|
|
/// <summary></summary>
|
|
/// <param name="box"></param>
|
|
/// <param name="g"></param>
|
|
void PaintGloss(Rectangle box, Graphics g);
|
|
|
|
/// <summary></summary>
|
|
void Resize(Rectangle box);
|
|
|
|
/// <summary></summary>
|
|
event EventHandler PropertiesChanged;
|
|
}
|
|
} |