mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-25 04:14:34 -08:00
10 lines
215 B
Protocol Buffer
10 lines
215 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_commands.proto";
|
|
message Command_RollDie {
|
|
extend GameCommand {
|
|
optional Command_RollDie ext = 1005;
|
|
}
|
|
optional uint32 sides = 1;
|
|
optional uint32 count = 2;
|
|
}
|