1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-07-22 21:14:18 -04:00
OpenDiablo2/OpenDiablo2.Common/Interfaces/ISprite.cs

19 lines
460 B
C#

using OpenDiablo2.Common.Models;
using System;
using System.Drawing;
namespace OpenDiablo2.Common.Interfaces
{
public interface ISprite : IDisposable
{
Point Location { get; set; }
Size FrameSize { get; set; }
Size LocalFrameSize { get; }
int Frame { get; set; }
int TotalFrames { get; }
Palette CurrentPalette { get; set; }
bool Blend { get; set; }
bool Darken { get; set; }
}
}