mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
18 lines
426 B
C#
18 lines
426 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; }
|
|
}
|
|
}
|