mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-30 14:42:00 -08:00
* - 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
12 lines
269 B
Protocol Buffer
12 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];
|
|
}
|