GC-Proto/proto/FlightDailyRecord.proto

15 lines
274 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2022-11-06 15:30:21 +03:00
option java_package = "emu.grasscutter.net.proto";
2023-02-28 06:08:38 +03:00
// Name: ECNGFMLEHPN
2022-11-06 15:30:21 +03:00
message FlightDailyRecord {
2023-02-28 06:08:38 +03:00
uint32 group_id = 12;
bool is_touched = 14;
uint32 best_score = 8;
uint32 start_time = 10;
repeated uint32 watcher_id_list = 15;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00