mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 19:55:32 +00:00
16 lines
337 B
C#
16 lines
337 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Platform.X11
|
|
{
|
|
public class X11WindowInfo : IWindowInfo
|
|
{
|
|
public IntPtr RootWindow;
|
|
public IntPtr Window;
|
|
public IntPtr TopLevelWindow;
|
|
public IntPtr Display;
|
|
public int Screen;
|
|
}
|
|
}
|