2007-08-10 11:27:13 +02:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-07-23 02:15:18 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Examples
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2007-09-02 02:02:10 +02:00
|
|
|
|
/// This interface is is used by the ExampleLauncher to identify OpenTK examples,
|
|
|
|
|
/// your applications do not need to implement or use it.
|
2007-07-23 02:15:18 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
interface IExample
|
|
|
|
|
{
|
2007-08-03 02:14:31 +02:00
|
|
|
|
void Launch();
|
2007-07-23 02:15:18 +02:00
|
|
|
|
}
|
|
|
|
|
}
|