mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-25 04:14:34 -08:00
17 lines
368 B
Protocol Buffer
17 lines
368 B
Protocol Buffer
import "game_commands.proto";
|
|
message Command_CreateToken {
|
|
extend GameCommand {
|
|
optional Command_CreateToken ext = 1010;
|
|
}
|
|
optional string zone = 1;
|
|
optional string card_name = 2;
|
|
optional string color = 3;
|
|
optional string pt = 4;
|
|
optional string annotation = 5;
|
|
optional bool destroy_on_zone_change = 6;
|
|
optional sint32 x = 7;
|
|
optional sint32 y = 8;
|
|
}
|
|
|
|
|