mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
17 lines
336 B
Protocol Buffer
17 lines
336 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "GalleryStopReason.proto";
|
||
|
|
||
|
message LuminanceStoneChallengeGallerySettleInfo {
|
||
|
uint32 cleanMudCount = 15;
|
||
|
uint32 galleryId = 11;
|
||
|
GalleryStopReason reason = 9;
|
||
|
uint32 killMonsterCount = 6;
|
||
|
uint32 killSpecialMonsterCount = 4;
|
||
|
uint32 finalScore = 5;
|
||
|
}
|