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

14 lines
264 B
C#
Raw Normal View History

2018-11-26 18:18:23 -05:00
using System;
using System.Drawing;
namespace OpenDiablo2.Common.Interfaces
{
public interface ITextBox : IDisposable
{
string Text { get; set; }
Point Location { get; set; }
void Render();
void Update(long ms);
}
}