* - 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
11 lines
269 B
Protocol Buffer
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];
|
|
}
|