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 GatheringInviteCancelTask : BaseTask
|
||||
{
|
||||
public class GatheringInviteCancelTaskParam : BaseParam
|
||||
{
|
||||
public string invite_id;
|
||||
}
|
||||
|
||||
public GatheringInviteCancelTask()
|
||||
{
|
||||
base.type = ApiType.Type.GatheringInviteCancel;
|
||||
}
|
||||
|
||||
public void SetParameter(string inviteId)
|
||||
{
|
||||
GatheringInviteCancelTaskParam gatheringInviteCancelTaskParam = new GatheringInviteCancelTaskParam();
|
||||
gatheringInviteCancelTaskParam.invite_id = inviteId;
|
||||
base.Params = gatheringInviteCancelTaskParam;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user