mirror of
https://github.com/ppy/osu
synced 2025-03-04 18:40:24 +00:00
Clean Channel up and reword two comments
This commit is contained in:
parent
66378d5847
commit
16d3815a59
@ -17,7 +17,7 @@ namespace osu.Game.Online.Chat
|
|||||||
public readonly int MAX_HISTORY = 300;
|
public readonly int MAX_HISTORY = 300;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains every joined user except yourself
|
/// Contains every joined user except the current logged in user.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public readonly ObservableCollection<User> JoinedUsers = new ObservableCollection<User>();
|
public readonly ObservableCollection<User> JoinedUsers = new ObservableCollection<User>();
|
||||||
public readonly SortedList<Message> Messages = new SortedList<Message>(Comparer<Message>.Default);
|
public readonly SortedList<Message> Messages = new SortedList<Message>(Comparer<Message>.Default);
|
||||||
@ -52,7 +52,7 @@ namespace osu.Game.Online.Chat
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contructs a private channel
|
/// Contructs a private channel
|
||||||
/// TODO this class needs to be serialized from something like channels/private, instead of creating from a contructor
|
/// TODO this class needs to be serialized from something like channels/private, instead of creating from the contructor
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="user">The user</param>
|
/// <param name="user">The user</param>
|
||||||
public Channel(User user)
|
public Channel(User user)
|
||||||
@ -63,9 +63,6 @@ namespace osu.Game.Online.Chat
|
|||||||
JoinedUsers.Add(user);
|
JoinedUsers.Add(user);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void AddLocalEcho(LocalEchoMessage message)
|
public void AddLocalEcho(LocalEchoMessage message)
|
||||||
{
|
{
|
||||||
pendingMessages.Add(message);
|
pendingMessages.Add(message);
|
||||||
|
Loading…
Reference in New Issue
Block a user