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

12 lines
218 B
C#

using System.Drawing;
namespace OpenDiablo2.Common.Interfaces
{
public interface ITextLabel
{
string Text { get; set; }
Point Position { get; set; }
IFont Font { get; set; }
}
}