Opentk/Source/OpenGL/Bind/Settings.cs

20 lines
551 B
C#
Raw Normal View History

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-11-02 21:40:36 +00:00
public static string InputPath = "..\\..\\..\\Source\\OpenGL\\Specifications";
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";
}
}