mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-26 10:40:14 +00:00
16 lines
294 B
C#
16 lines
294 B
C#
|
|
namespace YooAsset
|
|
{
|
|
internal struct LoadBundleOptions
|
|
{
|
|
/// <summary>
|
|
/// 资源包
|
|
/// </summary>
|
|
public readonly PackageBundle Bundle;
|
|
|
|
public LoadBundleOptions(PackageBundle bundle)
|
|
{
|
|
Bundle = bundle;
|
|
}
|
|
}
|
|
} |