Interface IAssetCatalogComparer
- Namespace
- TAssetBundle
- Assembly
- TAssetBundle.dll
Defines a comparer interface for comparing asset catalogs. The implementation should provide logic to determine if the remote catalog has a higher version than the local catalog.
public interface IAssetCatalogComparer
Methods
IsRemoteHigh(AssetCatalog, AssetCatalog)
Compares the versions of the local and remote asset catalogs.
bool IsRemoteHigh(AssetCatalog local, AssetCatalog remote)
Parameters
local
AssetCatalogThe local asset catalog.
remote
AssetCatalogThe remote asset catalog.
Returns
- bool
Returns
true
if the remote catalog has a higher version than the local catalog, otherwisefalse
.