mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
321 B
Protocol Buffer
17 lines
321 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GCGReason.proto";
|
|
import "GCGZoneType.proto";
|
|
|
|
// Name: HMNIHMNIOKA
|
|
message GCGMsgAddCards {
|
|
uint32 pos = 15;
|
|
repeated uint32 card_guid_list = 9;
|
|
GCGReason reason = 13;
|
|
uint32 controller_id = 3;
|
|
GCGZoneType zone = 14;
|
|
}
|
|
|