YIUIYooAssetsLoadComponent.cs 406 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using YooAsset;
  4. namespace ET.Client
  5. {
  6. /// <summary>
  7. /// YIUI资源管理器 yooasset扩展
  8. /// </summary>
  9. [ComponentOf(typeof(YIUILoadComponent))]
  10. public class YIUIYooAssetsLoadComponent : Entity, IAwake, IDestroy
  11. {
  12. public Dictionary<int, AssetHandle> m_AllHandle = new();
  13. public ResourcePackage m_Package;
  14. }
  15. }