mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-02-06 21:19:25 +03:00
17 lines
277 B
Protocol Buffer
17 lines
277 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "StoreType.proto";
|
|
import "Vector.proto";
|
|
|
|
// CmdId: 663
|
|
// Name: PCBLPPLABOH
|
|
message DropItemReq {
|
|
Vector pos = 14;
|
|
uint64 guid = 13;
|
|
uint32 count = 5;
|
|
StoreType store_type = 9;
|
|
}
|
|
|