mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-13 21:54:38 +03:00
15 lines
274 B
Protocol Buffer
15 lines
274 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "Rotation.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message HomeFurnitureSuiteData {
|
|
repeated int32 includedFurnitureIndexList = 7;
|
|
uint32 guid = 12;
|
|
uint32 suiteId = 15;
|
|
bool isAllowSummon = 14;
|
|
Rotation spawnPos = 10;
|
|
}
|