Files
YooAsset/Assets/YooAsset/Editor/AssetBundleBuilder/BuildSystem/IBuildTask.cs

8 lines
117 B
C#
Raw Normal View History

2022-03-01 10:44:12 +08:00

namespace YooAsset.Editor
{
public interface IBuildTask
{
void Run(BuildContext context);
}
}