mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 19:26:49 +00:00
15 lines
295 B
Protocol Buffer
15 lines
295 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "HomeBlockSubFieldData.proto";
|
||
|
import "Vector.proto";
|
||
|
|
||
|
message HomeBlockFieldData {
|
||
|
uint32 guid = 1;
|
||
|
uint32 furniture_id = 2;
|
||
|
Vector pos = 3;
|
||
|
Vector rot = 4;
|
||
|
repeated HomeBlockSubFieldData sub_field_list = 5;
|
||
|
}
|