mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 13:37:42 +00:00
15 lines
295 B
Protocol Buffer
15 lines
295 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ForgeQueueData.proto";
|
|
|
|
// CmdId: 628
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message ForgeGetQueueDataRsp {
|
|
int32 retcode = 15;
|
|
uint32 max_queue_num = 13;
|
|
map<uint32, ForgeQueueData> forge_queue_map = 11;
|
|
}
|