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

8 lines
129 B
C#

namespace OpenDiablo2.Common.Interfaces
{
public interface IRenderTarget
{
void Draw(ISprite sprite);
}
}