mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 16:39:26 +03:00
12 lines
348 B
Protocol Buffer
12 lines
348 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "FriendEnterHomeOption.proto";
|
|
|
|
message PlayerHomeCompInfo {
|
|
FriendEnterHomeOption friend_enter_home_option = 7;
|
|
repeated uint32 seen_module_id_list = 9;
|
|
repeated uint32 levelup_reward_got_level_list = 13;
|
|
repeated uint32 unlocked_module_id_list = 15;
|
|
}
|