mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
19 lines
330 B
Protocol Buffer
19 lines
330 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 337
|
|
// Name: ECIGOAGHFLJ
|
|
message LuaSetOptionNotify {
|
|
// Name: GFPJDFDBMKJ
|
|
enum LuaOptionType {
|
|
LUA_OPTION_NONE = 0;
|
|
LUA_OPTION_PLAYER_INPUT = 1;
|
|
}
|
|
|
|
LuaOptionType option_type = 14;
|
|
string lua_set_param = 10;
|
|
}
|
|
|