mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-24 17:50:15 +00:00
1. IShareAssetPackRule重命名为ISharedPackRule 2. DefaultShareAssetPackRule重命名为DefaultSharedPackRule
14 lines
255 B
C#
14 lines
255 B
C#
|
|
namespace YooAsset.Editor
|
|
{
|
|
/// <summary>
|
|
/// 共享资源的打包规则
|
|
/// </summary>
|
|
public interface ISharedPackRule
|
|
{
|
|
/// <summary>
|
|
/// 获取打包规则结果
|
|
/// </summary>
|
|
PackRuleResult GetPackRuleResult(string assetPath);
|
|
}
|
|
} |