1
0
Fork 0
mirror of https://github.com/Ryujinx/Opentk.git synced 2025-03-08 10:10:00 +00:00
Opentk/Source/OpenTK/Platform/Dummy/DummyWindowInfo.cs

18 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Platform.Dummy
{
class DummyWindowInfo : IWindowInfo
{
#region IDisposable Members
public void Dispose()
{
}
#endregion
}
}