1
0
mirror of https://gitlab.com/YuukiPS/GC-Proto.git synced 2025-04-16 05:56:07 +03:00
GC-Proto/proto/GetGachaInfoRsp.proto
2024-06-23 23:33:14 +08:00

16 lines
338 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "GachaInfo.proto";
// 4.7.0
message GetGachaInfoRsp {
uint32 gacha_random = 6;
bool is_under_minors_restrict = 10;
int32 retcode = 11;
uint32 daily_gacha_times = 12;
repeated GachaInfo gacha_info_list = 13;
bool is_under_general_restrict = 14;
}