mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
--------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de> Co-authored-by: ebbit1q <ebbit1q@gmail.com>
11 lines
239 B
Protocol Buffer
11 lines
239 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_event.proto";
|
|
|
|
message Event_RollDie {
|
|
extend GameEvent {
|
|
optional Event_RollDie ext = 2008;
|
|
}
|
|
optional uint32 sides = 1;
|
|
optional uint32 value = 2;
|
|
repeated uint32 values = 3;
|
|
}
|