mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
15 lines
281 B
Protocol Buffer
15 lines
281 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GCGReason.proto";
|
|
|
|
// Name: JPOIDEAHMPH
|
|
message GCGMsgModifyRemove {
|
|
repeated uint32 card_guid_list = 9;
|
|
GCGReason reason = 2;
|
|
uint32 controller_id = 15;
|
|
uint32 owner_card_guid = 4;
|
|
}
|
|
|