using System.Collections.Generic; using System.Threading.Tasks; using TinaX.VFSKit.Exceptions; namespace TinaX.VFSKitInternal { public interface IVFSInternal { Task Start(); List GetAllBundle(); bool LoadFromAssetbundle(); #if UNITY_EDITOR List GetAllEditorAsset(); #endif } }