GC-Proto/proto/HomeBalloonGalleryRecord.proto

15 lines
285 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "HomeGroupPlayerInfo.proto";
2023-02-28 04:12:44 +03:00
// Name: HDILGEFEHEL
2023-02-18 04:48:44 +03:00
message HomeBalloonGalleryRecord {
2023-02-28 04:12:44 +03:00
uint32 score = 10;
uint32 hit_count = 15;
HomeGroupPlayerInfo player_info = 5;
uint32 timestamp = 3;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00