GC-Proto/proto/GCGOperation.proto
2023-04-11 11:14:48 +08:00

28 lines
793 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "GCGOperationAttack.proto";
import "GCGOperationOnStageSelect.proto";
import "GCGOperationPass.proto";
import "GCGOperationPlayCard.proto";
import "GCGOperationReboot.proto";
import "GCGOperationRedraw.proto";
import "GCGOperationReroll.proto";
import "GCGOperationSurrender.proto";
// Name: EALFDFCFHPG
message GCGOperation {
oneof op {
GCGOperationRedraw op_redraw = 13;
GCGOperationOnStageSelect op_select_on_stage = 5;
GCGOperationReroll op_reroll = 7;
GCGOperationAttack op_attack = 4;
GCGOperationPass op_pass = 14;
GCGOperationPlayCard op_play_card = 1;
GCGOperationReboot op_reboot = 10;
GCGOperationSurrender op_surrender = 9;
}
}