GC-Proto/proto/ScenePlayerSoundNotify.proto

22 lines
399 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
2023-04-11 06:14:48 +03:00
// CmdId: 227
// Name: DCPCGJCCOJL
2023-02-18 04:48:44 +03:00
message ScenePlayerSoundNotify {
2023-04-11 06:14:48 +03:00
// Name: GONLGHGGMDM
2023-02-28 04:12:44 +03:00
enum PlaySoundType {
PLAY_SOUND_NONE = 0;
PLAY_SOUND_START = 1;
PLAY_SOUND_STOP = 2;
}
2023-02-18 04:48:44 +03:00
2023-04-11 06:14:48 +03:00
string sound_name = 11;
Vector play_pos = 7;
PlaySoundType play_type = 15;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00