1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-18 17:26:05 -04:00
OpenDiablo2/OpenDiablo2.Common/Interfaces/ILabel.cs

14 lines
283 B
C#
Raw Normal View History

2018-11-22 16:22:39 -05:00
using System;
using System.Drawing;
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; }
}
}