mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
18 lines
350 B
Protocol Buffer
18 lines
350 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "BundleInfo.proto";
|
|
import "ScoreChallengeInfo.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message SalvageChallengeInfo {
|
|
bool isUnlock = 2;
|
|
uint32 challengeType = 14;
|
|
oneof CLJGLJPJCIN {
|
|
BundleInfo bundle_info = 8;
|
|
ScoreChallengeInfo score_challenge_info = 5;
|
|
uint32 boss_challenge_id = 1;
|
|
}
|
|
}
|