16 lines
294 B
Protocol Buffer
16 lines
294 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PropChangeReason.proto";
|
|
|
|
// CmdId: 1263
|
|
// Name: ECKONOENIGF
|
|
message PlayerPropChangeReasonNotify {
|
|
float cur_value = 13;
|
|
float old_value = 6;
|
|
uint32 prop_type = 7;
|
|
PropChangeReason reason = 3;
|
|
}
|
|
|