servatrice/common/pb/command_shuffle.proto
Rob Blanckaert d932581f4a Move to bottom of library in random order. (#3549)
* - Allow shuffling a subset of a zone
- When moving cards to the bottom of library, shuffle them after
- Process events in the correct order serverside

* Zach fixes

Signed-off-by: Zach Halpern <ZaHalpern+github@gmail.com>

* Comments + additional guard
2019-02-07 14:08:44 -05:00

11 lines
278 B
Protocol Buffer

syntax = "proto2";
import "game_commands.proto";
message Command_Shuffle {
extend GameCommand {
optional Command_Shuffle ext = 1003;
}
optional string zone_name = 1;
optional sint32 start = 2 [default = 0];
optional sint32 end = 3 [default = -1];
}