mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-19 14:50:10 +00:00
15 lines
371 B
C#
15 lines
371 B
C#
|
|
namespace YooAsset
|
|
{
|
|
internal class VirtualBundle
|
|
{
|
|
private readonly IFileSystem _fileSystem;
|
|
private readonly PackageBundle _packageBundle;
|
|
|
|
internal VirtualBundle(IFileSystem fileSystem, PackageBundle packageBundle)
|
|
{
|
|
_fileSystem = fileSystem;
|
|
_packageBundle = packageBundle;
|
|
}
|
|
}
|
|
} |