Add a new command to reverse turn order (#3802)

This commit is contained in:
ctrlaltca 2019-08-28 02:04:27 +02:00 committed by Zach H
parent 013137c418
commit f54165025e
13 changed files with 113 additions and 7 deletions

View file

@ -0,0 +1,9 @@
syntax = "proto2";
import "game_event.proto";
message Event_ReverseTurn {
extend GameEvent {
optional Event_ReverseTurn ext = 2021;
}
optional bool reversed = 1;
}