From 73d69e2fd964c7eff983e3ca75bd3ffcf961203a Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 17 Jan 2018 20:32:26 +0900 Subject: [PATCH] Add more xmldoc --- osu.Game/OsuGame.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/osu.Game/OsuGame.cs b/osu.Game/OsuGame.cs index 56fe436210..dd020e435d 100644 --- a/osu.Game/OsuGame.cs +++ b/osu.Game/OsuGame.cs @@ -119,8 +119,16 @@ namespace osu.Game private ScheduledDelegate scoreLoad; + /// + /// Open chat to a channel matching the provided name, if present. + /// + /// The name of the channel. public void OpenChannel(string channelName) => chat.OpenChannel(chat.AvailableChannels.Find(c => c.Name == channelName)); + /// + /// Show a beatmap set as an overlay. + /// + /// The set to display. public void ShowBeatmapSet(int setId) => beatmapSetOverlay.ShowBeatmapSet(setId); protected void LoadScore(Score s)