20 lines
493 B
C#
20 lines
493 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace YooAsset.Editor
|
|
{
|
|
public class TaskCreateManifest_RFBP : TaskCreateManifest, IBuildTask
|
|
{
|
|
void IBuildTask.Run(BuildContext context)
|
|
{
|
|
CreateManifestFile(false, true, context);
|
|
}
|
|
|
|
protected override string[] GetBundleDepends(BuildContext context, string bundleName)
|
|
{
|
|
return Array.Empty<string>();
|
|
}
|
|
}
|
|
} |