That marker is only recognized by pb3-compatible compilers, meaning that tools which are otherwise compatible with our files break on them. Notably, this includes hprotoc (for haskell).
12 lines
320 B
Protocol Buffer
12 lines
320 B
Protocol Buffer
import "game_event.proto";
|
|
|
|
message Event_AttachCard {
|
|
extend GameEvent {
|
|
optional Event_AttachCard ext = 2012;
|
|
}
|
|
optional string start_zone = 1;
|
|
optional sint32 card_id = 2;
|
|
optional sint32 target_player_id = 3;
|
|
optional string target_zone = 4;
|
|
optional sint32 target_card_id = 5;
|
|
}
|