注册登录Demo

注册登录Demo
This commit is contained in:
ALEXTANG
2023-07-16 00:57:20 +08:00
parent c178f8bb75
commit c6ecb48944
17 changed files with 350 additions and 22 deletions

View File

@@ -0,0 +1,20 @@
syntax = "proto3";
package TEngine.Network.Message;
import "google/protobuf/struct.proto";
message AccountInfo
{
int64 UnitId = 1;
int64 UserId = 2;
int64 CharaId = 3;
repeated int32 Ks = 4;
repeated int64 Vs = 5;
}
message ItemInfo
{
int32 ItemGId = 1;
int32 ItemId = 2;
int32 Count = 3;
}