GCG初步 但会卡进度条 用命令/gcg进入

This commit is contained in:
UnKownOwO
2023-01-04 21:59:25 +08:00
parent 2bc157dd2d
commit f991480192
203 changed files with 5104 additions and 2790 deletions

View File

@@ -25,18 +25,17 @@ import "GCGOperationRedraw.proto";
import "GCGOperationReroll.proto";
import "GCGOperationSurrender.proto";
package proto;
option go_package = "./;proto";
message GCGOperation {
oneof op {
GCGOperationRedraw op_redraw = 10;
GCGOperationOnStageSelect op_select_on_stage = 4;
GCGOperationReroll op_reroll = 9;
GCGOperationAttack op_attack = 11;
GCGOperationPass op_pass = 15;
GCGOperationPlayCard op_play_card = 2;
GCGOperationRedraw op_redraw = 3;
GCGOperationOnStageSelect op_select_on_stage = 9;
GCGOperationReroll op_reroll = 4;
GCGOperationAttack op_attack = 7;
GCGOperationPass op_pass = 6;
GCGOperationPlayCard op_play_card = 15;
GCGOperationReboot op_reboot = 5;
GCGOperationSurrender op_surrender = 1;
GCGOperationSurrender op_surrender = 10;
}
}