12 lines
338 B
Protocol Buffer
12 lines
338 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "FriendEnterHomeOption.proto";
|
|
|
|
message PlayerHomeCompInfo {
|
|
FriendEnterHomeOption friend_enter_home_option = 1;
|
|
repeated uint32 unlocked_module_id_list = 2;
|
|
repeated uint32 levelup_reward_got_level_list = 3;
|
|
repeated uint32 seen_module_id_list = 4;
|
|
} |