mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
15 lines
232 B
Protocol Buffer
15 lines
232 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: BLBBHMODFBA
|
|
message MsgParam {
|
|
oneof param {
|
|
uint32 int_param = 11;
|
|
float flt_param = 13;
|
|
string str_param = 12;
|
|
}
|
|
}
|
|
|