12 lines
242 B
C#
12 lines
242 B
C#
using System.Drawing;
|
|
|
|
namespace hKursu.Controls
|
|
{
|
|
public interface IShadowLabel
|
|
{
|
|
byte Alpha { get; set; }
|
|
Color ShadowColor { get; set; }
|
|
int xOffset { get; set; }
|
|
int yOffset { get; set; }
|
|
}
|
|
} |