Opentk/Source/Examples/IExample.cs
the_fiddler 6af814b655 Example names are now more readable (ExampleLauncher.Load())
ExampleLauncher behavior is now more consistent when launching GameWindow and WinForm examples. The launcher becomes invisible, and the launched examples exist in the same thread as the launcher.
Better documentation for IExample.cs
2007-09-02 00:02:10 +00:00

21 lines
486 B
C#

#region --- License ---
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
namespace Examples
{
/// <summary>
/// This interface is is used by the ExampleLauncher to identify OpenTK examples,
/// your applications do not need to implement or use it.
/// </summary>
interface IExample
{
void Launch();
}
}