2020-12-18 23:15:41 +08:00
|
|
|
// 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.
|
|
|
|
|
2020-12-20 16:36:23 +08:00
|
|
|
using System.Collections.Generic;
|
2020-12-18 23:15:41 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Game.Screens.Multi.Components;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Multi.Timeshift
|
|
|
|
{
|
|
|
|
public class TimeshiftRoomManager : RoomManager
|
|
|
|
{
|
|
|
|
public readonly Bindable<double> TimeBetweenListingPolls = new Bindable<double>();
|
|
|
|
public readonly Bindable<double> TimeBetweenSelectionPolls = new Bindable<double>();
|
|
|
|
|
2020-12-20 16:36:23 +08:00
|
|
|
protected override IEnumerable<RoomPollingComponent> CreatePollingComponents() => new RoomPollingComponent[]
|
2020-12-18 23:15:41 +08:00
|
|
|
{
|
|
|
|
new ListingPollingComponent { TimeBetweenPolls = { BindTarget = TimeBetweenListingPolls } },
|
|
|
|
new SelectionPollingComponent { TimeBetweenPolls = { BindTarget = TimeBetweenSelectionPolls } }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|