mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
22 lines
398 B
Protocol Buffer
22 lines
398 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// Name: EMBMCPPLGPA
|
|
// CmdId: 201
|
|
message ScenePlayerSoundNotify {
|
|
// Name: MCCICFBIADN
|
|
enum PlaySoundType {
|
|
PLAY_SOUND_NONE = 0;
|
|
PLAY_SOUND_START = 1;
|
|
PLAY_SOUND_STOP = 2;
|
|
}
|
|
|
|
PlaySoundType play_type = 14;
|
|
Vector play_pos = 1;
|
|
string sound_name = 4;
|
|
}
|
|
|