2f64fb372e
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.
15 lines
317 B
C#
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();
|
|
}
|
|
}
|