12 lines
221 B
Protocol Buffer
12 lines
221 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
import "TrialAvatarGrantRecord.proto";
|
||
|
import "Item.proto";
|
||
|
|
||
|
message TrialAvatarInfo {
|
||
|
repeated Item trial_equip_list = 2;
|
||
|
TrialAvatarGrantRecord grant_record = 3;
|
||
|
uint32 trial_avatar_id = 1;
|
||
|
}
|