2023-05-25 13:46:54 +08:00
|
|
|
|
using AxibugProtobuf;
|
|
|
|
|
using ClientCore.Network;
|
|
|
|
|
|
|
|
|
|
namespace ClientCore.Manager
|
|
|
|
|
{
|
|
|
|
|
public class AppLogin
|
|
|
|
|
{
|
|
|
|
|
public void Login(string Account)
|
|
|
|
|
{
|
|
|
|
|
Protobuf_Login msg = new Protobuf_Login()
|
|
|
|
|
{
|
|
|
|
|
LoginType = 0,
|
|
|
|
|
Account = Account,
|
|
|
|
|
};
|
2023-05-25 18:04:01 +08:00
|
|
|
|
App.networkHelper.SendToServer((int)CommandID.CmdLogin, NetworkHelper.Serizlize(msg));
|
2023-05-25 13:46:54 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|