Files
LuaCsForBarotraumaEP/Libraries/MonoGame.Framework/Src/MonoGame.Framework/Graphics/WindowInfo.SDL.cs
T
2019-06-25 16:00:44 +03:00

15 lines
246 B
C#

using System;
namespace MonoGame.OpenGL
{
internal class WindowInfo : IWindowInfo
{
public IntPtr Handle { get; private set; }
public WindowInfo(IntPtr handle)
{
Handle = handle;
}
}
}