feature(serenitea pot): Implementation of enter

Ugly hard code
This commit is contained in:
Yazawazi
2022-05-14 03:20:20 +08:00
committed by Melledy
parent 27e817a6ce
commit 295f15eece
15 changed files with 371 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "HomeModuleComfortInfo.proto";
message HomeComfortInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
CMD_ID = 4557;
}
repeated HomeModuleComfortInfo module_info_list = 1;
}