mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
17 lines
340 B
Protocol Buffer
17 lines
340 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "VehicleInteractType.proto";
|
|
import "VehicleMember.proto";
|
|
|
|
// CmdId: 806
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message VehicleInteractRsp {
|
|
int32 retcode = 15;
|
|
uint32 entity_id = 14;
|
|
VehicleInteractType interact_type = 3;
|
|
VehicleMember member = 1;
|
|
}
|