Opentk/Source/Examples/IExample.cs
the_fiddler 2f64fb372e Major updates to keyboard input. The infrastructure (drivers etc) is ready. Windows raw input works (now implementing multiple devices). The examples need updating for the new input methods.
Updated the ExampleLauncher to not process exceptions. Updated the IExample interface to contain the Launch method. Updated examples and the ExampleLauncher according to the IExample interface.
Synced with gl3 branch.
2007-08-03 00:14:31 +00:00

15 lines
317 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Examples
{
/// <summary>
/// Examples should implement this (empty) interface, so that the ExampleLauncher
/// can identify them.
/// </summary>
interface IExample
{
void Launch();
}
}