GC-Proto/proto/IrodoriMasterGallerySettleInfo.proto

16 lines
312 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 "GalleryStopReason.proto";
2023-02-28 04:12:44 +03:00
// Name: MMMGLJJMLJF
2023-02-18 04:48:44 +03:00
message IrodoriMasterGallerySettleInfo {
2023-02-28 04:12:44 +03:00
uint32 level_id = 1;
GalleryStopReason reason = 7;
uint32 finish_time = 10;
bool is_finish = 14;
uint32 difficult = 11;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00