feat(battle-engine): copy-loop closure to 3282 files (member-surface frontier)

This commit is contained in:
gamer147
2026-06-05 20:41:25 -04:00
parent 3dcd53933a
commit f9982f5249
41 changed files with 3030 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
namespace Cute;
public class PublistTransitionCode : NetworkTask
{
public class Email : PostParams
{
public string password { get; set; }
}
private CuteNetworkDefine.ApiType apiType = CuteNetworkDefine.ApiType.GetTransitionCode;
public override string Url => $"{CustomPreference.GetApplicationServerURL()}{CuteNetworkDefine.ApiUrlList[apiType]}";
public void SetParameter(string password)
{
Email email = new Email();
email.password = password;
base.Params = email;
}
protected override int Parse()
{
return base.Parse();
}
}