first commit

This commit is contained in:
2025-09-11 16:55:18 +03:00
commit c419202a2a
144 changed files with 8818 additions and 0 deletions

12
IShadowLabel.cs Normal file
View File

@@ -0,0 +1,12 @@
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; }
}
}