15 lines
297 B
Protocol Buffer
15 lines
297 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "AnimatorParameterValueInfo.proto";
|
|
|
|
// Name: GDAMHLMPFCM
|
|
message EvtAnimatorParameterInfo {
|
|
bool is_server_cache = 7;
|
|
AnimatorParameterValueInfo value = 6;
|
|
uint32 entity_id = 2;
|
|
int32 name_id = 15;
|
|
}
|
|
|