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>
|
|
|
|
|
/// Examples should implement this (empty) interface, so that the ExampleLauncher
|
|
|
|
|
/// can identify them.
|
|
|
|
|
/// </summary>
|
|
|
|
|
interface IExample
|
|
|
|
|
{
|
2007-08-03 02:14:31 +02:00
|
|
|
|
void Launch();
|
2007-07-23 02:15:18 +02:00
|
|
|
|
}
|
|
|
|
|
}
|