mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-10 04:07:25 -08:00
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).
9 lines
168 B
Protocol Buffer
9 lines
168 B
Protocol Buffer
import "game_event.proto";
|
|
|
|
message Event_DeleteArrow {
|
|
extend GameEvent {
|
|
optional Event_DeleteArrow ext = 2001;
|
|
}
|
|
optional sint32 arrow_id = 1;
|
|
}
|