mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 07:35:31 +00:00
a3bd227e20
This significantly reduces the amount of duplicated code between Generator implementations.
24 lines
577 B
C#
24 lines
577 B
C#
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)
|
|
: base(nsName, dirName)
|
|
{
|
|
Settings.ImportsFile = "Core.cs";
|
|
Settings.DelegatesFile = "Delegates.cs";
|
|
Settings.EnumsFile = "Enums.cs";
|
|
Settings.WrappersFile = "ES.cs";
|
|
}
|
|
}
|
|
}
|