mirror of
https://github.com/ppy/osu.git
synced 2026-06-04 22:57:46 +08:00
4810c7c847
As touched on in https://github.com/ppy/osu/pull/33581.
20 lines
655 B
C#
20 lines
655 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Game.Online.Rooms;
|
|
using osu.Game.Screens.OnlinePlay.Playlists;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.DailyChallenge
|
|
{
|
|
public partial class DailyChallengePlayer : PlaylistsPlayer
|
|
{
|
|
protected override UserActivity InitialActivity => new UserActivity.PlayingDailyChallenge(Beatmap.Value.BeatmapInfo, Ruleset.Value);
|
|
|
|
public DailyChallengePlayer(Room room, PlaylistItem playlistItem)
|
|
: base(room, playlistItem)
|
|
{
|
|
}
|
|
}
|
|
}
|