10 lines
127 B
Protocol Buffer
10 lines
127 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
|
||
|
enum PlaySoundType {
|
||
|
PLAY_SOUND_TYPE_NONE = 0;
|
||
|
PLAY_SOUND_TYPE_START = 1;
|
||
|
PLAY_SOUND_TYPE_STOP = 2;
|
||
|
}
|