mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-05 09:47:18 -05:00
11 lines
190 B
C#
11 lines
190 B
C#
|
using System;
|
|||
|
using OpenDiablo2.Common.Interfaces;
|
|||
|
|
|||
|
namespace OpenDiablo2.SDL2_
|
|||
|
{
|
|||
|
public sealed class SDL2Texture : ITexture
|
|||
|
{
|
|||
|
public IntPtr Pointer { get; set; }
|
|||
|
}
|
|||
|
}
|