9 lines
185 B
Protocol Buffer
9 lines
185 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_event.proto";
|
|
|
|
message Event_ReverseTurn {
|
|
extend GameEvent {
|
|
optional Event_ReverseTurn ext = 2021;
|
|
}
|
|
optional bool reversed = 1;
|
|
}
|