GC-Proto/proto/WeaponUpgradeReq.proto

21 lines
390 B
Protocol Buffer
Raw Permalink Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-08-22 20:09:33 +03:00
import "ItemParam.proto";
2022-11-06 15:30:21 +03:00
message WeaponUpgradeReq {
2023-08-22 20:09:33 +03:00
enum CmdId {
option allow_alias = true;
ENET_CHANNEL_ID = 0;
NONE = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
CMD_ID = 670;
}
uint64 target_weapon_guid = 1;
repeated uint64 food_weapon_guid_list = 2;
repeated ItemParam item_param_list = 3;
2022-11-06 15:30:21 +03:00
}