Init.cs 430 B

12345678910111213141516171819202122
  1. using System;
  2. namespace ET
  3. {
  4. internal static class Init
  5. {
  6. private static int Main(string[] args)
  7. {
  8. try
  9. {
  10. NoCut.Run();
  11. Proto2CS.Export();
  12. }
  13. catch (Exception e)
  14. {
  15. Console.WriteLine(e.ToString());
  16. }
  17. Console.WriteLine("proto2cs ok!");
  18. return 1;
  19. }
  20. }
  21. }