Files
TEngine/DotNet/Config/ProtoBuf/proto_csOuterMessage.proto
ALEXTANG c6ecb48944 注册登录Demo
注册登录Demo
2023-07-16 00:57:20 +08:00

20 lines
302 B
Protocol Buffer

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;
}