CUERipper revamp

This commit is contained in:
chudov
2010-02-28 21:04:34 +00:00
parent 31048cb63c
commit 749f96ed8a
92 changed files with 6410 additions and 440 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Drawing;
namespace ProgressODoom {
/// <summary></summary>
public interface IProgressBorderPainter : IDisposable {
/// <summary></summary>
/// <param name="box"></param>
/// <param name="gr"></param>
void PaintBorder(Rectangle box, Graphics gr);
/// <summary></summary>
void Resize(Rectangle box);
/// <summary></summary>
int BorderWidth { get; }
/// <summary></summary>
event EventHandler PropertiesChanged;
}
}