12 lines
291 B
Protocol Buffer
12 lines
291 B
Protocol Buffer
import "game_event.proto";
|
|
import "serverinfo_card.proto";
|
|
|
|
message Event_RevealCards {
|
|
extend GameEvent {
|
|
optional Event_RevealCards ext = 2006;
|
|
}
|
|
optional string zone_name = 1;
|
|
optional sint32 card_id = 2;
|
|
optional sint32 other_player_id = 3;
|
|
repeated ServerInfo_Card cards = 4;
|
|
}
|