servatrice/common/pb/event_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
269 B
Protocol Buffer

syntax = "proto2";
import "game_event.proto";
message Event_Shuffle {
extend GameEvent {
optional Event_Shuffle ext = 2007;
}
optional string zone_name = 1;
optional sint32 start = 2 [default = 0];
optional sint32 end = 3 [default = -1];
}