Exemplo n.º 1
0
 public static BundleHolder Gen(BundleInfo bi, BundleMgr _mgr)
 {
     if (bi.type == AssetType.MULTI_ASSETS)
     {
         return(new BundleHolderMulti(bi, _mgr));
     }
     return(new BundleHolderOne(bi, _mgr));
 }
Exemplo n.º 2
0
 public BundleHolderMulti(BundleInfo bi, BundleMgr _mgr) : base(bi, _mgr)
 {
 }
Exemplo n.º 3
0
 public BundleHolderOne(BundleInfo bi, BundleMgr _mgr) : base(bi, _mgr)
 {
 }
Exemplo n.º 4
0
 public BundleHolder(BundleInfo bi, BundleMgr _mgr)
 {
     info = bi;
     mgr  = _mgr;
 }