mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-26 07:39:25 +03:00
13 lines
272 B
Protocol Buffer
13 lines
272 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
message WeaponUpgradeRsp {
|
|
repeated ItemParam item_param_list = 1;
|
|
uint64 target_weapon_guid = 6;
|
|
uint32 cur_level = 12;
|
|
int32 retcode = 8;
|
|
uint32 old_level = 3;
|
|
} |