mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
15 lines
187 B
Protocol Buffer
15 lines
187 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
message AbilityArgument {
|
||
|
oneof arg {
|
||
|
uint32 int_arg = 11;
|
||
|
float float_arg = 2;
|
||
|
string str_arg = 8;
|
||
|
}
|
||
|
}
|