GC-Proto/proto/EntityJumpNotify.proto

23 lines
360 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
2023-02-28 04:12:44 +03:00
// Name: IHFJJGEJPCK
// CmdId: 219
2023-02-18 04:48:44 +03:00
message EntityJumpNotify {
2023-02-28 04:12:44 +03:00
// Name: DBEOHMKBCOH
enum Type {
NULL = 0;
ACTIVE = 1;
PASSIVE = 2;
}
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
Vector pos = 13;
uint32 entity_id = 9;
Vector rot = 15;
Type jump_type = 7;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00