Move forging stuff to ForgingManager, make client respond to ForgeGetQueueDataReq and actually display forging queues.

This commit is contained in:
ImmuState
2022-06-04 07:12:47 -07:00
committed by Melledy
parent 662c9d4ec2
commit 0c0719bd2a
7 changed files with 135 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
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;
}