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

17 lines
393 B
C#
Raw Normal View History

2018-11-22 16:22:39 -05:00
using System;
using System.Drawing;
using OpenDiablo2.Common.Enums;
2018-11-22 16:22:39 -05:00
namespace OpenDiablo2.Common.Interfaces
{
public interface ILabel : IDisposable
{
string Text { get; set; }
Point Location { get; set; }
2018-11-22 16:22:39 -05:00
Size TextArea { get; set; }
Color TextColor { get; set; }
int MaxWidth { get; set; }
eTextAlign Alignment { get; set; }
2018-11-22 16:22:39 -05:00
}
}