123456789101112131415161718 |
- using System;
- namespace cn.mob.unity3d.sdkporter
- {
- public class MOBPathModel
- {
- public string rootPath;
- public string savePath;
- public string filePath;
- public MOBPathModel ()
- {
- rootPath = "";
- savePath = "";
- filePath = "";
- }
- }
- }
|