mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-04 09:14:35 +03:00
17 lines
351 B
Protocol Buffer
17 lines
351 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "HomePlantSubFieldData.proto";
|
|
import "Vector.proto";
|
|
|
|
// Name: OHEONJCMMOF
|
|
message HomePlantFieldData {
|
|
uint32 field_guid = 1;
|
|
uint32 furniture_id = 8;
|
|
uint32 scene_id = 9;
|
|
repeated HomePlantSubFieldData sub_field_list = 11;
|
|
Vector spawn_pos = 13;
|
|
}
|
|
|