1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-16 08:18:19 -04: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; }
}
}