CustomExport.cs 404 B

12345678910111213141516171819
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace Util
  5. {
  6. public interface CustomExport
  7. {
  8. void StartHierarchysExport(string savePath);//一次
  9. bool StartEachHierarchyExport(string hierarchyPath);//N次
  10. void EndEachHierarchyExport(string hierarchyPath);//N次
  11. void EndHierarchysExport(string savePath);//一次
  12. }
  13. }