OvertakingLegend/Packages/com.tuyoogame.yooasset@2.1.1/Editor/AssetBundleCollector/CollectRules/IActiveRule.cs

14 lines
260 B
C#
Raw Normal View History

2025-03-24 03:08:22 +00:00

namespace YooAsset.Editor
{
/// <summary>
/// 资源分组激活规则接口
/// </summary>
public interface IActiveRule
{
/// <summary>
/// 是否激活分组
/// </summary>
bool IsActiveGroup();
}
}