1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-09 21:14:21 -04:00
OpenDiablo2/OpenDiablo2.Common/Interfaces/UI/ILabel.cs

17 lines
393 B
C#

using System;
using System.Drawing;
using OpenDiablo2.Common.Enums;
namespace OpenDiablo2.Common.Interfaces
{
public interface ILabel : IDisposable
{
string Text { get; set; }
Point Location { get; set; }
Size TextArea { get; set; }
Color TextColor { get; set; }
int MaxWidth { get; set; }
eTextAlign Alignment { get; set; }
}
}