GC-Proto/proto/SceneTeamUpdateNotify.proto

14 lines
256 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
import "SceneTeamAvatar.proto";
2023-04-11 11:18:47 +03:00
// CmdId: 1646
// Name: MJFGNJJDJDN
2022-11-06 15:30:21 +03:00
message SceneTeamUpdateNotify {
2023-02-28 06:08:38 +03:00
repeated SceneTeamAvatar scene_team_avatar_list = 7;
2023-04-11 11:18:47 +03:00
bool is_in_mp = 4;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00