Opentk/Source/OpenTK/Platform/Dummy/DummyWindowInfo.cs
the_fiddler 2ce6227e64 Moved DummyGLContext and DummyGLControl to the OpenTK/Platform/Dummy directory and namespace.
Fixed a regression where the GLControl would try to instantiate a normal context inside the VS designer, instead of a dummy one.
2008-12-09 10:09:03 +00:00

17 lines
283 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
}
}