MOBPathModel.cs 256 B

123456789101112131415161718
  1. using System;
  2. namespace cn.mob.unity3d.sdkporter
  3. {
  4. public class MOBPathModel
  5. {
  6. public string rootPath;
  7. public string savePath;
  8. public string filePath;
  9. public MOBPathModel ()
  10. {
  11. rootPath = "";
  12. savePath = "";
  13. filePath = "";
  14. }
  15. }
  16. }