GC-Proto/proto/EntityJumpNotify.proto

23 lines
358 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-04-11 06:14:48 +03:00
// CmdId: 277
// Name: GCNOIGGCBBN
2023-02-18 04:48:44 +03:00
message EntityJumpNotify {
2023-04-11 06:14:48 +03:00
// Name: PPGMHILJKOI
2023-02-28 04:12:44 +03:00
enum Type {
NULL = 0;
ACTIVE = 1;
PASSIVE = 2;
}
2023-02-18 04:48:44 +03:00
2023-04-11 06:14:48 +03:00
Type jump_type = 4;
Vector pos = 6;
Vector rot = 3;
uint32 entity_id = 5;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00