17 lines
363 B
Protocol Buffer
17 lines
363 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "Vector.proto";
|
||
|
import "HomeMarkPointNPCData.proto";
|
||
|
import "HomeMarkPointSuiteData.proto";
|
||
|
// Obf: MDHHDACNAEL
|
||
|
message HomeMarkPointFurnitureData {
|
||
|
uint32 guid = 1;
|
||
|
uint32 furniture_id = 2;
|
||
|
uint32 furniture_type = 3;
|
||
|
Vector pos = 4;
|
||
|
oneof extra {
|
||
|
HomeMarkPointNPCData npc_data = 6;
|
||
|
HomeMarkPointSuiteData suite_data = 7;
|
||
|
}
|
||
|
}
|