mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
20 lines
302 B
Protocol Buffer
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;
|
|
} |