Ejemplo n.º 1
0
 public Beatmap()
 {
     GeneralSection    = new BeatmapGeneralSection();
     EditorSection     = new BeatmapEditorSection();
     MetadataSection   = new BeatmapMetadataSection();
     DifficultySection = new BeatmapDifficultySection();
     EventsSection     = new BeatmapEventsSection();
     ColoursSection    = new BeatmapColoursSection();
 }
Ejemplo n.º 2
0
 public static List <string> MetadataSection(BeatmapMetadataSection section)
 {
     return(new List <string>
     {
         string.Empty,
         "[Metadata]",
         "Title:" + section.Title,
         "TitleUnicode:" + section.TitleUnicode,
         "Artist:" + section.Artist,
         "ArtistUnicode:" + section.ArtistUnicode,
         "Creator:" + section.Creator,
         "Version:" + section.Version,
         "Source:" + section.Source,
         "Tags:" + section.TagsString,
         "BeatmapID:" + section.BeatmapID,
         "BeatmapSetID:" + section.BeatmapSetID,
     });
 }