1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-17 00:36:10 -04:00
OpenDiablo2/OpenDiablo2.Common/Interfaces/ILabel.cs
2018-11-26 19:07:46 -05:00

14 lines
283 B
C#

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