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

16
proto/HomeBasicInfo.proto Normal file
View File

@@ -0,0 +1,16 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "HomeLimitedShopInfo.proto";
message HomeBasicInfo {
uint32 cur_module_id = 1;
uint32 cur_room_scene_id = 2;
bool is_in_edit_mode = 3;
uint64 exp = 4;
uint32 level = 5;
uint32 home_owner_uid = 6;
HomeLimitedShopInfo limited_shop_info = 7;
string owner_nick_name = 8;
}