DataTableProcessor.DataProcessor.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 Jiang Yin. All rights reserved.
  4. // Homepage: https://gameframework.cn/
  5. // Feedback: mailto:ellan@gameframework.cn
  6. //------------------------------------------------------------
  7. using System.IO;
  8. namespace MetaClient.Editor.DataTableTools
  9. {
  10. public sealed partial class DataTableProcessor
  11. {
  12. public abstract class DataProcessor
  13. {
  14. public abstract System.Type Type
  15. {
  16. get;
  17. }
  18. public abstract bool IsId
  19. {
  20. get;
  21. }
  22. public abstract bool IsComment
  23. {
  24. get;
  25. }
  26. public abstract bool IsSystem
  27. {
  28. get;
  29. }
  30. public abstract string LanguageKeyword
  31. {
  32. get;
  33. }
  34. public abstract string[] GetTypeStrings();
  35. public abstract void WriteToStream(DataTableProcessor dataTableProcessor, BinaryWriter binaryWriter, string value);
  36. }
  37. }
  38. }