GC-Proto/proto/AnimatorParameterValueInfoPair.proto
2024-08-28 11:45:34 +08:00

11 lines
251 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// Version: 5.0
import "AnimatorParameterValueInfo.proto";
message AnimatorParameterValueInfoPair {
int32 name_id = 1;
AnimatorParameterValueInfo animator_para = 2;
}