// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Online.RealtimeMultiplayer; using osu.Game.Screens.Multi.Lounge.Components; using osu.Game.Screens.Multi.RealtimeMultiplayer; namespace osu.Game.Tests.Visual.RealtimeMultiplayer { public class TestRealtimeRoomContainer : Container { protected override Container Content => content; private readonly Container content; [Cached(typeof(StatefulMultiplayerClient))] public readonly TestRealtimeMultiplayerClient Client; [Cached(typeof(RealtimeRoomManager))] public readonly TestRealtimeRoomManager RoomManager; [Cached] public readonly Bindable Filter = new Bindable(new FilterCriteria()); public TestRealtimeRoomContainer() { RelativeSizeAxes = Axes.Both; AddRangeInternal(new Drawable[] { Client = new TestRealtimeMultiplayerClient(), RoomManager = new TestRealtimeRoomManager(), content = new Container { RelativeSizeAxes = Axes.Both } }); } } }