Files
hKursu/IShadowLabel.cs
2025-09-11 16:55:18 +03:00

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; }
}
}