Opentk/Source/OpenGL/Bind/Settings.cs
the_fiddler cd32a6db54
2006-11-02 21:40:36 +00:00

20 lines
551 B
C#

#region License
//Copyright (c) 2006 Stephen Apostolopoulos
//See license.txt for license info
#endregion
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.OpenGL.Bind
{
static class Settings
{
public static string InputPath = "..\\..\\..\\Source\\OpenGL\\Specifications";
public static string OutputPath = "..\\..\\..\\Source\\OpenGL\\OpenGL\\Bindings";
public static string GLClass = "GL";
public static string OutputNamespace = "OpenTK.OpenGL";
}
}