2023-02-18 04:48:44 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
2023-02-28 04:12:44 +03:00
|
|
|
import "GCGOperationAttack.proto";
|
|
|
|
import "GCGOperationOnStageSelect.proto";
|
|
|
|
import "GCGOperationPass.proto";
|
|
|
|
import "GCGOperationPlayCard.proto";
|
|
|
|
import "GCGOperationReboot.proto";
|
|
|
|
import "GCGOperationRedraw.proto";
|
|
|
|
import "GCGOperationReroll.proto";
|
|
|
|
import "GCGOperationSurrender.proto";
|
2023-02-18 04:48:44 +03:00
|
|
|
|
2023-02-28 04:12:44 +03:00
|
|
|
// Name: AOBAFNIHINJ
|
2023-02-18 04:48:44 +03:00
|
|
|
message GCGOperation {
|
2023-02-28 04:12:44 +03:00
|
|
|
oneof op {
|
|
|
|
GCGOperationRedraw op_redraw = 3;
|
|
|
|
GCGOperationOnStageSelect op_select_on_stage = 14;
|
|
|
|
GCGOperationReroll op_reroll = 6;
|
|
|
|
GCGOperationAttack op_attack = 2;
|
|
|
|
GCGOperationPass op_pass = 15;
|
|
|
|
GCGOperationPlayCard op_play_card = 9;
|
|
|
|
GCGOperationReboot op_reboot = 12;
|
|
|
|
GCGOperationSurrender op_surrender = 4;
|
|
|
|
}
|
2023-02-18 04:48:44 +03:00
|
|
|
}
|
2023-02-28 04:12:44 +03:00
|
|
|
|