mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 09:19:25 +03:00
15 lines
273 B
Protocol Buffer
15 lines
273 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
|
||
|
import "GalleryStopReason.proto";
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
message IrodoriMasterGallerySettleInfo {
|
||
|
bool isFinish = 14;
|
||
|
GalleryStopReason reason = 6;
|
||
|
uint32 difficult = 10;
|
||
|
uint32 finishTime = 15;
|
||
|
uint32 levelId = 7;
|
||
|
}
|