feat(battle-engine): copy-loop closure to 3282 files (member-surface frontier)
This commit is contained in:
21
SVSim.BattleEngine/Engine/Wizard/GatheringInviteTask.cs
Normal file
21
SVSim.BattleEngine/Engine/Wizard/GatheringInviteTask.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace Wizard;
|
||||
|
||||
public class GatheringInviteTask : BaseTask
|
||||
{
|
||||
public class GatheringInviteTaskParam : BaseParam
|
||||
{
|
||||
public string target_viewer_id;
|
||||
}
|
||||
|
||||
public GatheringInviteTask()
|
||||
{
|
||||
base.type = ApiType.Type.GatheringInvite;
|
||||
}
|
||||
|
||||
public void SetParameter(string targetViewerId)
|
||||
{
|
||||
GatheringInviteTaskParam gatheringInviteTaskParam = new GatheringInviteTaskParam();
|
||||
gatheringInviteTaskParam.target_viewer_id = targetViewerId;
|
||||
base.Params = gatheringInviteTaskParam;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user