Implement the Home System (Serenitea Pot)

This commit is contained in:
Akka
2022-06-14 20:51:13 +08:00
committed by Melledy
parent 99bcd2af70
commit 1c0d869ee5
72 changed files with 1412 additions and 39 deletions

View File

@@ -0,0 +1,18 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "HomeMarkPointNPCData.proto";
import "HomeMarkPointSuiteData.proto";
import "Vector.proto";
message HomeMarkPointFurnitureData {
uint32 guid = 1;
uint32 furniture_id = 2;
uint32 furniture_type = 3;
Vector pos = 4;
oneof extra {
HomeMarkPointNPCData npc_data = 6;
HomeMarkPointSuiteData suite_data = 7;
}
}