CSGenerator.cs 584 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Text;
  3. namespace spgen
  4. {
  5. public class CSGenerator : GeneratorBase
  6. {
  7. private string[] CS_TYPE_NAMES = new string []
  8. {
  9. "bool",
  10. "short",
  11. "unsigned short",
  12. "byte",
  13. "byte",
  14. "int",
  15. "unsigned int",
  16. "long",
  17. "unsigned long",
  18. "double",
  19. "float",
  20. "string",
  21. };
  22. public override void GenerateCode(string dir, Entity entity, bool inSourceDir)
  23. {
  24. }
  25. }
  26. }