Add TestingBeatmap activity

This commit is contained in:
Joseph Madamba
2023-02-12 13:04:12 -08:00
parent afb66d8af4
commit bbeef53569
3 changed files with 14 additions and 0 deletions

View File

@ -80,6 +80,16 @@ namespace osu.Game.Users
}
}
public class TestingBeatmap : InGame
{
public override string GetStatus(bool hideIdentifiableInformation = false) => "Testing a beatmap";
public TestingBeatmap(IBeatmapInfo beatmapInfo, IRulesetInfo ruleset)
: base(beatmapInfo, ruleset)
{
}
}
public class EditingBeatmap : UserActivity
{
public IBeatmapInfo BeatmapInfo { get; }