servatrice/common/pb/command_flip_card.proto
2015-08-25 23:40:08 -04:00

12 lines
268 B
Protocol Buffer

syntax = "proto2";
import "game_commands.proto";
message Command_FlipCard {
extend GameCommand {
optional Command_FlipCard ext = 1008;
}
optional string zone = 1;
optional sint32 card_id = 2 [default = -1];
optional bool face_down = 3;
}