mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-25 12:24:26 -08:00
9 lines
210 B
Protocol Buffer
9 lines
210 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_commands.proto";
|
|
message Command_DeleteArrow {
|
|
extend GameCommand {
|
|
optional Command_DeleteArrow ext = 1012;
|
|
}
|
|
optional sint32 arrow_id = 1 [default = -1];
|
|
}
|