mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-06 17:16:08 +03:00
16 lines
302 B
Protocol Buffer
16 lines
302 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "VehicleInteractType.proto";
|
|
|
|
// CmdId: 838
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
// IsAllowClient: true
|
|
message VehicleInteractReq {
|
|
uint32 entity_id = 8;
|
|
VehicleInteractType interact_type = 3;
|
|
uint32 pos = 10;
|
|
}
|