2009-09-03 19:01:11 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Xml.XPath;
|
|
|
|
|
using Bind.GL2;
|
|
|
|
|
using Bind.Structures;
|
|
|
|
|
using Delegate=Bind.Structures.Delegate;
|
|
|
|
|
using Enum=Bind.Structures.Enum;
|
|
|
|
|
|
|
|
|
|
namespace Bind.ES
|
|
|
|
|
{
|
|
|
|
|
class ESGenerator : Generator
|
|
|
|
|
{
|
|
|
|
|
public ESGenerator(string nsName, string dirName)
|
2013-10-30 23:18:07 +00:00
|
|
|
|
: base(nsName, dirName)
|
2009-09-03 19:01:11 +00:00
|
|
|
|
{
|
2010-12-02 21:58:49 +00:00
|
|
|
|
Settings.ImportsFile = "Core.cs";
|
|
|
|
|
Settings.DelegatesFile = "Delegates.cs";
|
|
|
|
|
Settings.EnumsFile = "Enums.cs";
|
|
|
|
|
Settings.WrappersFile = "ES.cs";
|
2009-09-03 19:01:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|