A stable modding interface between Techblox and mods https://mod.exmods.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
351B

  1. using System.CodeDom;
  2. using System.CodeDom.Compiler;
  3. using System.IO;
  4. namespace CodeGenerator
  5. {
  6. internal class Program
  7. {
  8. public static void Main(string[] args)
  9. {
  10. var bcg = new BlockClassGenerator();
  11. bcg.Generate("TestBlock", "TEST_BLOCK");
  12. bcg.Generate("Engine", null);
  13. }
  14. }
  15. }