2025-01-09 11:31:04 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityEngine.TestTools;
|
|
|
|
|
using YooAsset;
|
|
|
|
|
|
2025-04-01 21:12:28 +08:00
|
|
|
|
public class T3_TestCacheFileSystem : IPrebuildSetup, IPostBuildCleanup
|
2025-01-09 11:31:04 +08:00
|
|
|
|
{
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Cleanup()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|