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

13 lines
245 B
C#

using System.Drawing;
namespace OpenDiablo2.Common.Interfaces
{
public interface IMapEngine
{
PointF CameraLocation { get; set; }
void Update(long ms);
void Render();
void NotifyMapChanged();
}
}