1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 11:07:25 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Components/RoomPollingComponent.cs

19 lines
554 B
C#
Raw Normal View History

2023-06-23 00:37:25 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2020-12-18 23:15:41 +08:00
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Game.Online;
using osu.Game.Online.API;
namespace osu.Game.Screens.OnlinePlay.Components
2020-12-18 23:15:41 +08:00
{
2022-11-24 13:32:20 +08:00
public abstract partial class RoomPollingComponent : PollingComponent
2020-12-18 23:15:41 +08:00
{
[Resolved]
2023-06-23 00:37:25 +08:00
protected IAPIProvider API { get; private set; } = null!;
2020-12-18 23:15:41 +08:00
[Resolved]
2023-06-23 00:37:25 +08:00
protected IRoomManager RoomManager { get; private set; } = null!;
2020-12-18 23:15:41 +08:00
}
}