1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00

Move polling clients to osu.Game.Tests namespace

This commit is contained in:
Dan Balasescu 2022-11-04 18:52:57 +09:00
parent fa18b5f701
commit 66bbe34116
3 changed files with 5 additions and 3 deletions

View File

@ -10,7 +10,7 @@ using osu.Framework.Bindables;
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Game.Online.API.Requests.Responses; using osu.Game.Online.API.Requests.Responses;
using osu.Game.Online.Notifications; using osu.Game.Online.Notifications;
using osu.Game.Online.Notifications.Polling; using osu.Game.Tests;
using osu.Game.Users; using osu.Game.Users;
namespace osu.Game.Online.API namespace osu.Game.Online.API

View File

@ -4,8 +4,9 @@
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using osu.Game.Online.API; using osu.Game.Online.API;
using osu.Game.Online.Notifications;
namespace osu.Game.Online.Notifications.Polling namespace osu.Game.Tests
{ {
/// <summary> /// <summary>
/// A notifications client which polls for new messages every second. /// A notifications client which polls for new messages every second.

View File

@ -4,8 +4,9 @@
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using osu.Game.Online.API; using osu.Game.Online.API;
using osu.Game.Online.Notifications;
namespace osu.Game.Online.Notifications.Polling namespace osu.Game.Tests
{ {
/// <summary> /// <summary>
/// A connector for <see cref="PollingNotificationsClient"/>s that poll for new messages. /// A connector for <see cref="PollingNotificationsClient"/>s that poll for new messages.