mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-03 16:57:16 -05:00
15 lines
292 B
C#
15 lines
292 B
C#
using System;
|
|
using System.Drawing;
|
|
using OpenDiablo2.Common.Models;
|
|
|
|
namespace OpenDiablo2.Common.Interfaces
|
|
{
|
|
public interface IMapEngine
|
|
{
|
|
PointF CameraLocation { get; set; }
|
|
void Update(long ms);
|
|
void Render();
|
|
void NotifyMapChanged();
|
|
}
|
|
}
|