mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 20:22:55 +08:00
Merge conflicts
This commit is contained in:
parent
dbc8d513f9
commit
442a2c97db
@ -19,7 +19,6 @@ namespace osu.Desktop.VisualTests
|
|||||||
{
|
{
|
||||||
class TestCaseLeaderboard : TestCase
|
class TestCaseLeaderboard : TestCase
|
||||||
{
|
{
|
||||||
public override string Name => @"Leaderboard";
|
|
||||||
public override string Description => @"From song select";
|
public override string Description => @"From song select";
|
||||||
|
|
||||||
private Leaderboard leaderboard;
|
private Leaderboard leaderboard;
|
||||||
|
@ -14,6 +14,7 @@ using osu.Game.Modes;
|
|||||||
using osu.Framework.Graphics.Textures;
|
using osu.Framework.Graphics.Textures;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using osu.Framework.Extensions.Color4Extensions;
|
||||||
|
|
||||||
namespace osu.Game.Screens.Select.Leaderboards
|
namespace osu.Game.Screens.Select.Leaderboards
|
||||||
{
|
{
|
||||||
|
@ -270,9 +270,9 @@ namespace osu.Game.Screens.Tournament
|
|||||||
|
|
||||||
private void addFlags()
|
private void addFlags()
|
||||||
{
|
{
|
||||||
foreach (Team t in availableTeams)
|
foreach (Region r in availableTeams)
|
||||||
{
|
{
|
||||||
Add(new ScrollingTeam(t)
|
Add(new ScrollingTeam(r)
|
||||||
{
|
{
|
||||||
X = leftPos + DrawWidth
|
X = leftPos + DrawWidth
|
||||||
});
|
});
|
||||||
|
@ -53,11 +53,7 @@ namespace osu.Game.Screens.Tournament.Teams
|
|||||||
string acronym = split.Length >= 3 ? split[2].Trim() : teamName;
|
string acronym = split.Length >= 3 ? split[2].Trim() : teamName;
|
||||||
acronym = acronym.Substring(0, Math.Min(3, acronym.Length));
|
acronym = acronym.Substring(0, Math.Min(3, acronym.Length));
|
||||||
|
|
||||||
<<<<<<< HEAD
|
teams.Add(new Region
|
||||||
teams.Add(new Region()
|
|
||||||
=======
|
|
||||||
teams.Add(new Team
|
|
||||||
>>>>>>> 6f20473e65960e059727dee5dc075fc356d07c1b
|
|
||||||
{
|
{
|
||||||
FlagName = flagName,
|
FlagName = flagName,
|
||||||
FullName = teamName,
|
FullName = teamName,
|
||||||
|
@ -326,15 +326,12 @@
|
|||||||
<Compile Include="Screens\Select\Options\BeatmapOptionsEditButton.cs" />
|
<Compile Include="Screens\Select\Options\BeatmapOptionsEditButton.cs" />
|
||||||
<Compile Include="Screens\Select\Options\BeatmapOptionsOverlay.cs" />
|
<Compile Include="Screens\Select\Options\BeatmapOptionsOverlay.cs" />
|
||||||
<Compile Include="Screens\Select\Options\BeatmapOptionsRemoveFromUnplayedButton.cs" />
|
<Compile Include="Screens\Select\Options\BeatmapOptionsRemoveFromUnplayedButton.cs" />
|
||||||
<<<<<<< HEAD
|
|
||||||
<Compile Include="Screens\Select\Leaderboards\Leaderboard.cs" />
|
<Compile Include="Screens\Select\Leaderboards\Leaderboard.cs" />
|
||||||
<Compile Include="Screens\Select\Leaderboards\LeaderboardScore.cs" />
|
<Compile Include="Screens\Select\Leaderboards\LeaderboardScore.cs" />
|
||||||
<Compile Include="Graphics\UserInterface\IHasDrawableRepresentation.cs" />
|
<Compile Include="Graphics\UserInterface\IHasDrawableRepresentation.cs" />
|
||||||
<Compile Include="Users\Region.cs" />
|
<Compile Include="Users\Region.cs" />
|
||||||
<Compile Include="Users\Badge.cs" />
|
<Compile Include="Users\Badge.cs" />
|
||||||
=======
|
|
||||||
<Compile Include="IO\ArchiveReader.cs" />
|
<Compile Include="IO\ArchiveReader.cs" />
|
||||||
>>>>>>> 6f20473e65960e059727dee5dc075fc356d07c1b
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="$(SolutionDir)\osu-framework\osu.Framework\osu.Framework.csproj">
|
<ProjectReference Include="$(SolutionDir)\osu-framework\osu.Framework\osu.Framework.csproj">
|
||||||
|
Loading…
Reference in New Issue
Block a user