using BITFALL; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.AddressableAssets; namespace BITKit { public static class ItemExtensions { public static AssetableItem GetAssetable(this IBasicItem self) { return Addressables.LoadAssetAsync(self.AddressablePath).WaitForCompletion(); } } }