[ElmSharp] Fix SetNextFocusObject issue (#401)
[platform/core/csapi/tizenfx.git] / external / src / OpenTK / OpenTK / Platform / Dummy / DummyWindowInfo.cs
1 using System;
2
3 namespace OpenTK.Platform.Dummy
4 {
5     internal class DummyWindowInfo : IWindowInfo
6     {
7         public void Dispose()
8         {
9         }
10
11         public IntPtr Handle
12         {
13             get { return IntPtr.Zero; }
14         }
15     }
16 }