mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 16:16:46 +00:00
15 lines
272 B
Protocol Buffer
15 lines
272 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
message HomeFurnitureData {
|
|
uint32 furniture_id = 1;
|
|
Vector spawn_pos = 3;
|
|
Vector spawn_rot = 4;
|
|
int32 parent_furniture_index = 7;
|
|
uint32 guid = 8;
|
|
uint32 version = 9;
|
|
}
|