mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-31 07:12:55 +08:00
12 lines
232 B
Protocol Buffer
12 lines
232 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "ItemParam.proto";
|
||
|
|
||
|
message CalcWeaponUpgradeReturnItemsRsp {
|
||
|
int32 retcode = 1;
|
||
|
uint64 targetWeaponGuid = 2;
|
||
|
repeated ItemParam itemParamList = 3;
|
||
|
}
|