using System.Collections.Generic; using TBL.GodotSharp.Content.FileSystem; using Zio; namespace TBL.GodotSharp.Content.Package; /// /// 内部内容包 /// public class InternalPackage : PackageNode { public override IFileSystem SelfFileSystem { get; } = new GodotFileSystem("res://"); public override Info SelfInfo { get; } public override ICollection Dependencies { get; } }