feat(battle-engine): copy-loop closure to 3282 files (member-surface frontier)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
namespace Wizard;
|
||||
|
||||
public class GatheringUpdateDescriptionTask : BaseTask
|
||||
{
|
||||
public class GatheringUpdateDescriptionTaskParam : BaseParam
|
||||
{
|
||||
public string description;
|
||||
}
|
||||
|
||||
public GatheringUpdateDescriptionTask()
|
||||
{
|
||||
base.type = ApiType.Type.GatheringUpdateDescription;
|
||||
}
|
||||
|
||||
public void SetParameter(string description)
|
||||
{
|
||||
GatheringUpdateDescriptionTaskParam gatheringUpdateDescriptionTaskParam = new GatheringUpdateDescriptionTaskParam();
|
||||
gatheringUpdateDescriptionTaskParam.description = description;
|
||||
base.Params = gatheringUpdateDescriptionTaskParam;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user