GC-Proto/proto/UgcMusicTrack.proto

11 lines
180 B
Protocol Buffer
Raw Permalink Normal View History

2022-12-05 15:02:30 +03:00
syntax = "proto3";
2023-01-28 17:00:48 +03:00
import "UgcMusicNote.proto";
2023-03-21 02:37:31 +03:00
option java_package = "emu.grasscutter.net.proto";
// 3.2
2022-12-05 15:02:30 +03:00
message UgcMusicTrack {
2023-03-21 02:37:31 +03:00
repeated UgcMusicNote music_note_list = 6;
2022-12-05 15:02:30 +03:00
}