GC-Proto/proto/MsgParam.proto

15 lines
232 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-04-11 06:14:48 +03:00
// Name: BLBBHMODFBA
2023-02-18 04:48:44 +03:00
message MsgParam {
2023-02-28 04:12:44 +03:00
oneof param {
2023-04-11 06:14:48 +03:00
uint32 int_param = 11;
float flt_param = 13;
string str_param = 12;
2023-02-28 04:12:44 +03:00
}
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00