1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-30 11:05:23 +00:00
OpenDiablo2/OpenDiablo2.SDL2/SDL2Texture.cs
2018-11-27 01:04:27 -05:00

11 lines
190 B
C#

using System;
using OpenDiablo2.Common.Interfaces;
namespace OpenDiablo2.SDL2_
{
public sealed class SDL2Texture : ITexture
{
public IntPtr Pointer { get; set; }
}
}