GSServer-CBT/soggy-mistress/proto/PlayerStoreNotify.proto

18 lines
299 B
Protocol Buffer

syntax = "proto3";
import "StoreType.proto";
import "Item.proto";
message PlayerStoreNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 601;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
StoreType storeType = 1;
repeated Item itemList = 2;
uint32 weightLimit = 3;
}