Opentk/Source/Examples/WinForms/W04_Multiple_GLControls.cs
the_fiddler a65e1ea45c
2007-11-04 15:33:43 +00:00

32 lines
No EOL
605 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using OpenTK;
using OpenTK.OpenGL;
namespace Examples.WinForms
{
public partial class W04_Multiple_GLControls : Form, IExample
{
public W04_Multiple_GLControls()
{
InitializeComponent();
}
#region IExample Members
public void Launch()
{
}
public static readonly int order = 4;
#endregion
}
}