mirror of
https://github.com/ppy/osu.git
synced 2026-05-24 22:40:42 +08:00
Xmldocs
This commit is contained in:
@@ -10,6 +10,9 @@ using osuTK;
|
||||
|
||||
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match.Playlist
|
||||
{
|
||||
/// <summary>
|
||||
/// A historically-ordered list of <see cref="DrawableRoomPlaylistItem"/>s.
|
||||
/// </summary>
|
||||
public class MultiplayerHistoryList : DrawableRoomPlaylist
|
||||
{
|
||||
public MultiplayerHistoryList()
|
||||
|
||||
@@ -7,10 +7,14 @@ using osu.Framework.Bindables;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Game.Graphics.UserInterface;
|
||||
using osu.Game.Online.Multiplayer;
|
||||
using osu.Game.Online.Rooms;
|
||||
|
||||
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match.Playlist
|
||||
{
|
||||
/// <summary>
|
||||
/// The multiplayer playlist, containing lists to show the items from a <see cref="MultiplayerRoom"/> in both gameplay-order and historical-order.
|
||||
/// </summary>
|
||||
public class MultiplayerPlaylist : MultiplayerRoomComposite
|
||||
{
|
||||
public readonly Bindable<MultiplayerPlaylistDisplayMode> DisplayMode = new Bindable<MultiplayerPlaylistDisplayMode>();
|
||||
@@ -56,7 +60,6 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match.Playlist
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
base.LoadComplete();
|
||||
|
||||
DisplayMode.BindValueChanged(onDisplayModeChanged, true);
|
||||
}
|
||||
|
||||
|
||||
+3
@@ -3,6 +3,9 @@
|
||||
|
||||
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match.Playlist
|
||||
{
|
||||
/// <summary>
|
||||
/// The type of list displayed in a <see cref="MultiplayerPlaylist"/>.
|
||||
/// </summary>
|
||||
public enum MultiplayerPlaylistDisplayMode
|
||||
{
|
||||
Queue,
|
||||
|
||||
@@ -13,6 +13,9 @@ using osuTK;
|
||||
|
||||
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match.Playlist
|
||||
{
|
||||
/// <summary>
|
||||
/// A gameplay-ordered list of <see cref="DrawableRoomPlaylistItem"/>s.
|
||||
/// </summary>
|
||||
public class MultiplayerQueueList : DrawableRoomPlaylist
|
||||
{
|
||||
public readonly Bindable<QueueMode> QueueMode = new Bindable<QueueMode>();
|
||||
|
||||
Reference in New Issue
Block a user