mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
15 lines
285 B
Protocol Buffer
15 lines
285 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
message HomeFurnitureData {
|
|
uint32 version = 1;
|
|
int32 parentFurnitureIndex = 4;
|
|
Vector spawnRot = 6;
|
|
uint32 furniture_id = 7;
|
|
uint32 guid = 8;
|
|
Vector spawn_pos = 13;
|
|
}
|