-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
提供对微信小游戏缓存的查询接口
- Loading branch information
Showing
5 changed files
with
40 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
| ||
namespace YooAsset | ||
{ | ||
public interface IWechatQueryServices | ||
{ | ||
/// <summary> | ||
/// 查询是否为微信缓存的资源文件 | ||
/// </summary> | ||
/// <param name="packageName">包裹名称</param> | ||
/// <param name="fileName">文件名称(包含文件的后缀格式)</param> | ||
/// <param name="fileCRC">文件哈希值</param> | ||
/// <returns>返回查询结果</returns> | ||
bool Query(string packageName, string fileName, string fileCRC); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Assets/YooAsset/Runtime/Services/IWechatQueryServices.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.