Opentk/Source/Examples/ExampleInfo.cs
the_fiddler 7851bbff84 New sample browser with documentation and source code display.
Reduced example categories to OpenGL, OpenAL, OpenTK. Updated all samples to reflect this change.
Moved startup and loading code into separate files.
2009-04-20 07:20:25 +00:00

26 lines
635 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Examples
{
/// <summary>
/// Contains the information necessary to display and launch an example thorugh the ExampleLauncer.
/// </summary>
class ExampleInfo
{
public readonly Type Example;
public readonly ExampleAttribute Attribute;
public ExampleInfo(Type example, ExampleAttribute attr)
{
Example = example;
Attribute = attr;
}
public override string ToString()
{
return Attribute.ToString();
}
}
}