mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
19 lines
512 B
Protocol Buffer
19 lines
512 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "GCGChangeOnstageInfo.proto";
|
||
|
import "GCGSkillPreviewInfo.proto";
|
||
|
import "GCGSkillPreviewPlayCardInfo.proto";
|
||
|
|
||
|
// CmdId: 7993
|
||
|
// Name: PKMOJBOIHAD
|
||
|
message GCGSkillPreviewNotify {
|
||
|
repeated GCGSkillPreviewInfo skill_preview_list = 5;
|
||
|
uint32 onstage_card_guid = 11;
|
||
|
uint32 controller_id = 12;
|
||
|
repeated GCGChangeOnstageInfo change_onstage_preview_list = 8;
|
||
|
repeated GCGSkillPreviewPlayCardInfo play_card_list = 1;
|
||
|
}
|
||
|
|