mirror of
https://github.com/osukey/osukey.git
synced 2025-06-09 13:28:03 +09:00
Also fix up interface names
This commit is contained in:
parent
1ed61b9b98
commit
c93c615f5e
@ -12,7 +12,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interface that defines the dependencies required for multiplayer test scenes.
|
/// Interface that defines the dependencies required for multiplayer test scenes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IMultiplayerTestDependencies : IOnlinePlayTestDependencies
|
public interface IMultiplayerTestSceneDependencies : IOnlinePlayTestSceneDependencies
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The cached <see cref="MultiplayerClient"/>.
|
/// The cached <see cref="MultiplayerClient"/>.
|
@ -12,7 +12,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The base test scene for all multiplayer components and screens.
|
/// The base test scene for all multiplayer components and screens.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract class MultiplayerTestScene : OnlinePlayTestScene, IMultiplayerTestDependencies
|
public abstract class MultiplayerTestScene : OnlinePlayTestScene, IMultiplayerTestSceneDependencies
|
||||||
{
|
{
|
||||||
public const int PLAYER_1_ID = 55;
|
public const int PLAYER_1_ID = 55;
|
||||||
public const int PLAYER_2_ID = 56;
|
public const int PLAYER_2_ID = 56;
|
||||||
|
@ -13,7 +13,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains the basic dependencies of multiplayer test scenes.
|
/// Contains the basic dependencies of multiplayer test scenes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class MultiplayerTestSceneDependencies : OnlinePlayTestSceneDependencies, IMultiplayerTestDependencies
|
public class MultiplayerTestSceneDependencies : OnlinePlayTestSceneDependencies, IMultiplayerTestSceneDependencies
|
||||||
{
|
{
|
||||||
public TestMultiplayerClient Client { get; }
|
public TestMultiplayerClient Client { get; }
|
||||||
public TestUserLookupCache LookupCache { get; }
|
public TestUserLookupCache LookupCache { get; }
|
||||||
|
@ -11,7 +11,7 @@ namespace osu.Game.Tests.Visual.OnlinePlay
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interface that defines the dependencies required for online play test scenes.
|
/// Interface that defines the dependencies required for online play test scenes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IOnlinePlayTestDependencies
|
public interface IOnlinePlayTestSceneDependencies
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The cached <see cref="Room"/>.
|
/// The cached <see cref="Room"/>.
|
@ -16,7 +16,7 @@ namespace osu.Game.Tests.Visual.OnlinePlay
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// A base test scene for all online play components and screens.
|
/// A base test scene for all online play components and screens.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract class OnlinePlayTestScene : ScreenTestScene, IOnlinePlayTestDependencies
|
public abstract class OnlinePlayTestScene : ScreenTestScene, IOnlinePlayTestSceneDependencies
|
||||||
{
|
{
|
||||||
public Bindable<Room> SelectedRoom => OnlinePlayDependencies?.SelectedRoom;
|
public Bindable<Room> SelectedRoom => OnlinePlayDependencies?.SelectedRoom;
|
||||||
public IRoomManager RoomManager => OnlinePlayDependencies?.RoomManager;
|
public IRoomManager RoomManager => OnlinePlayDependencies?.RoomManager;
|
||||||
|
@ -15,7 +15,7 @@ namespace osu.Game.Tests.Visual.OnlinePlay
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains the basic dependencies of online play test scenes.
|
/// Contains the basic dependencies of online play test scenes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class OnlinePlayTestSceneDependencies : IReadOnlyDependencyContainer, IOnlinePlayTestDependencies
|
public class OnlinePlayTestSceneDependencies : IReadOnlyDependencyContainer, IOnlinePlayTestSceneDependencies
|
||||||
{
|
{
|
||||||
public Bindable<Room> SelectedRoom { get; }
|
public Bindable<Room> SelectedRoom { get; }
|
||||||
public IRoomManager RoomManager { get; }
|
public IRoomManager RoomManager { get; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user