14 lines
347 B
Protocol Buffer
14 lines
347 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "Vector.proto";
|
|
import "HomeMarkPointFurnitureData.proto";
|
|
// 4.7.0
|
|
// ?
|
|
message HomeMarkPointSceneData {
|
|
Vector teapot_spirit_pos = 2;
|
|
Vector safe_point_pos = 3;
|
|
uint32 module_id = 10;
|
|
uint32 scene_id = 9;
|
|
repeated HomeMarkPointFurnitureData furniture_list = 7;
|
|
}
|