mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-27 08:36:38 +00:00
14 lines
272 B
Protocol Buffer
14 lines
272 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "Vector.proto";
|
||
|
|
||
|
message HomeFurnitureSuiteData {
|
||
|
uint32 suite_id = 1;
|
||
|
Vector spawn_pos = 2;
|
||
|
repeated int32 included_furniture_index_list = 3;
|
||
|
uint32 guid = 5;
|
||
|
bool is_allow_summon = 6;
|
||
|
}
|