YooAsset/Editor/AssetBundleBuilder/BuildSystem/IBuildTask.cs

8 lines
117 B
C#
Raw Normal View History

2026-01-21 15:46:51 +08:00

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