GC-Proto/proto/GetGachaInfoRsp.proto
2024-08-28 17:09:22 +08:00

16 lines
377 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// Version: 5.0
// CmdId: 9090
import "GachaInfo.proto";
message GetGachaInfoRsp {
uint32 gacha_random = 1;
int32 retcode = 2;
repeated GachaInfo gacha_info_list = 4;
bool is_under_minors_restrict = 10;
bool is_under_general_restrict = 12;
uint32 daily_gacha_times = 15;
}