GC-Proto/proto/CreateEntityInfo.proto

21 lines
361 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
import "Vector.proto";
2022-11-06 15:30:21 +03:00
message CreateEntityInfo {
2023-01-28 17:00:48 +03:00
oneof entity {
uint32 monster_id = 1;
uint32 npc_id = 2;
uint32 gadget_id = 3;
uint32 item_id = 4;
}
uint32 level = 5;
Vector pos = 6;
Vector rot = 7;
2023-01-28 17:00:48 +03:00
uint32 sceneId = 10;
uint32 roomId = 11;
uint32 clientUniqueId = 12;
2022-11-06 15:30:21 +03:00
}