2009-02-22 11:43:35 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform.Dummy
|
|
|
|
|
{
|
|
|
|
|
class DummyWindowInfo : IWindowInfo
|
|
|
|
|
{
|
|
|
|
|
#region IDisposable Members
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2013-09-30 20:47:29 +02:00
|
|
|
|
|
|
|
|
|
public IntPtr Handle
|
|
|
|
|
{
|
|
|
|
|
get { return IntPtr.Zero; }
|
|
|
|
|
}
|
2009-02-22 11:43:35 +01:00
|
|
|
|
}
|
|
|
|
|
}
|