mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-03 16:57:16 -05:00
14 lines
264 B
C#
14 lines
264 B
C#
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);
|
|
}
|
|
}
|