1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 06:52:56 +08:00

Added licence header and removed unnecessary whitespace

This commit is contained in:
FreezyLemon 2017-12-04 13:55:57 +01:00
parent 9b866d2248
commit bb138ccaf7
2 changed files with 5 additions and 2 deletions

View File

@ -118,7 +118,7 @@ namespace osu.Game.Graphics.Sprites
content.Action = () => beatmapSetOverlay.ShowBeatmapSet(getIdFromUrl(url));
else if (url.StartsWith("b/") || url.StartsWith("beatmaps/"))
content.Action = () => beatmapSetOverlay.ShowBeatmap(getIdFromUrl(url));
else
else
content.Action = () => Process.Start($"https://osu.ppy.sh/{url}");
}
else

View File

@ -1,4 +1,7 @@
using osu.Game.Beatmaps;
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Beatmaps;
using System;
using System.Collections.Generic;
using System.Linq;