2006-10-08 18:26:43 +00:00
|
|
|
#region License
|
|
|
|
//Copyright (c) 2006 Stephen Apostolopoulos
|
|
|
|
//See license.txt for license info
|
|
|
|
#endregion
|
2006-09-28 22:07:53 +00:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace OpenTK.OpenGL.Bind
|
|
|
|
{
|
|
|
|
static class Settings
|
|
|
|
{
|
2006-10-15 22:12:27 +00:00
|
|
|
public static string InputPath = "..\\..\\Source\\OpenGL\\Specifications";
|
2006-09-28 22:07:53 +00:00
|
|
|
public static string OutputPath = "..\\..\\Source\\OpenGL\\OpenGL\\Bindings";
|
2006-10-10 23:40:36 +00:00
|
|
|
public static string GLClass = "GL";
|
2006-09-28 22:07:53 +00:00
|
|
|
public static string OutputNamespace = "OpenTK.OpenGL";
|
|
|
|
}
|
|
|
|
}
|