mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
21 lines
541 B
Protocol Buffer
21 lines
541 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "HomeBalloonRecord.proto";
|
|
import "HomeRacingRecord.proto";
|
|
import "HomeSeekFurnitureAllRecord.proto";
|
|
import "HomeStakeRecord.proto";
|
|
|
|
// Name: PEKCNIEFEPH
|
|
message HomeGroupRecord {
|
|
uint32 group_id = 10;
|
|
oneof detail {
|
|
HomeRacingRecord racing_gallery_info = 388;
|
|
HomeBalloonRecord balloon_gallery_info = 1949;
|
|
HomeStakeRecord stake_play_info = 748;
|
|
HomeSeekFurnitureAllRecord seek_furniture_gallery_info = 1996;
|
|
}
|
|
}
|
|
|