mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-05 01:27:38 -08:00
11 lines
221 B
Protocol Buffer
11 lines
221 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_event.proto";
|
|
|
|
message Event_DestroyCard {
|
|
extend GameEvent {
|
|
optional Event_DestroyCard ext = 2011;
|
|
}
|
|
optional string zone_name = 1;
|
|
optional uint32 card_id = 2;
|
|
}
|