mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
16 lines
382 B
Protocol Buffer
16 lines
382 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
// CmdId: 3034
|
|
|
|
import "StoreType.proto";
|
|
|
|
message StoreWeightLimitNotify {
|
|
uint32 weapon_count_limit = 3;
|
|
uint32 weight_limit = 5;
|
|
uint32 furniture_count_limit = 7;
|
|
uint32 material_count_limit = 11;
|
|
uint32 reliquary_count_limit = 14;
|
|
StoreType store_type = 15;
|
|
}
|