Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1452 | chris | 1 | #region --- License --- |
| 2 | /* Licensed under the MIT/X11 license. |
||
| 3 | * Copyright (c) 2006-2008 the OpenTK Team. |
||
| 4 | * This notice may not be removed from any source distribution. |
||
| 5 | * See license.txt for licensing details. |
||
| 6 | */ |
||
| 7 | #endregion |
||
| 8 | |||
| 9 | using System; |
||
| 10 | using System.Collections.Generic; |
||
| 11 | using System.Text; |
||
| 12 | |||
| 13 | namespace Examples |
||
| 14 | { |
||
| 15 | /// <summary> |
||
| 16 | /// This interface is is used by the ExampleLauncher to identify OpenTK examples, |
||
| 17 | /// your applications do not need to implement or use it. |
||
| 18 | /// </summary> |
||
| 19 | interface IExample |
||
| 20 | { |
||
| 21 | void Launch(); |
||
| 22 | } |
||
| 23 | } |