GC-Proto/proto/MusicBeatmap.proto

14 lines
271 B
Protocol Buffer
Raw Normal View History

2022-11-12 08:09:32 +03:00
// Proto has been converted from Sorapointa to Grasscutter format
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-01-28 18:50:00 +03:00
2022-11-12 08:09:32 +03:00
import "MusicBeatmapList.proto";
2023-01-28 18:50:00 +03:00
2022-11-12 08:09:32 +03:00
message MusicBeatmap {
uint32 music_id = 1;
repeated MusicBeatmapList beatmap_item_list = 2;
}