1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Add xmldoc to clarify the purpose of BeatmapExporter

This commit is contained in:
OliBomby 2023-07-12 14:49:49 +02:00
parent b577b6b6ae
commit 465cc759f0
2 changed files with 7 additions and 0 deletions

View File

@ -6,6 +6,10 @@ using osu.Game.Beatmaps;
namespace osu.Game.Database
{
/// <summary>
/// Exporter for beatmap archives.
/// This is not for legacy purposes and works for lazer only.
/// </summary>
public class BeatmapExporter : LegacyArchiveExporter<BeatmapSetInfo>
{
public BeatmapExporter(Storage storage)

View File

@ -6,6 +6,9 @@ using osu.Game.Beatmaps;
namespace osu.Game.Database
{
/// <summary>
/// Exporter for osu!stable legacy beatmap archives.
/// </summary>
public class LegacyBeatmapExporter : LegacyArchiveExporter<BeatmapSetInfo>
{
public LegacyBeatmapExporter(Storage storage)