GC-Proto/proto/PlayerStoreNotify.proto

11 lines
234 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "StoreType.proto";
import "Item.proto";
message PlayerStoreNotify {
repeated Item item_list = 2;
StoreType store_type = 3;
uint32 weight_limit = 7;
}