17 lines
308 B
Protocol Buffer
17 lines
308 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "Vector.proto";
|
|
import "HomePlantSubFieldData.proto";
|
|
|
|
message HomePlantFieldData {
|
|
uint32 sceneId = 1;
|
|
uint32 fieldGuid = 3;
|
|
repeated HomePlantSubFieldData subFieldList = 2;
|
|
uint32 furnitureId = 4;
|
|
Vector spawnPos = 9;
|
|
}
|