mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 17:25:33 +00:00
19 lines
509 B
C#
19 lines
509 B
C#
|
/* Copyright (c) 2006 Stephen Apostolopoulos
|
||
|
* See license.txt for license info
|
||
|
*/
|
||
|
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace OpenTK.OpenGL.Bind
|
||
|
{
|
||
|
static class Settings
|
||
|
{
|
||
|
public static string InputPath = "..\\..\\Specifications";
|
||
|
public static string OutputPath = "..\\..\\Source\\OpenGL\\OpenGL\\Bindings";
|
||
|
public static string OutputClass = "GL";
|
||
|
public static string OutputNamespace = "OpenTK.OpenGL";
|
||
|
}
|
||
|
}
|