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