16 lines
351 B
C#
16 lines
351 B
C#
|
using System.CodeDom;
|
|||
|
using System.CodeDom.Compiler;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace CodeGenerator
|
|||
|
{
|
|||
|
internal class Program
|
|||
|
{
|
|||
|
public static void Main(string[] args)
|
|||
|
{
|
|||
|
var bcg = new BlockClassGenerator();
|
|||
|
bcg.Generate("TestBlock", "TEST_BLOCK");
|
|||
|
bcg.Generate("Engine", null);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|