14 lines
220 B
Protocol Buffer
14 lines
220 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "GCGDiceSideType.proto";
|
||
|
|
||
|
message DiceRoll {
|
||
|
uint32 controllerId = 8;
|
||
|
uint32 diceNum = 11;
|
||
|
repeated GCGDiceSideType diceSideList = 7;
|
||
|
}
|