1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-17 22:17:25 +08:00

Move namespace under Overlays.

This commit is contained in:
Huo Yaoyuan 2017-06-16 16:36:23 +08:00
parent af4ddf8fbd
commit 6372cd0a13
12 changed files with 23 additions and 22 deletions

View File

@ -2,7 +2,7 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Users.Profile
namespace osu.Game.Overlays.Profile
{
public class AboutSection : ProfileSection
{

View File

@ -1,7 +1,7 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Users.Profile
namespace osu.Game.Overlays.Profile
{
public class BeatmapsSection : ProfileSection
{

View File

@ -1,7 +1,7 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Users.Profile
namespace osu.Game.Overlays.Profile
{
public class HistoricalSection : ProfileSection
{

View File

@ -1,7 +1,7 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Users.Profile
namespace osu.Game.Overlays.Profile
{
public class KudosuSection : ProfileSection
{

View File

@ -1,7 +1,7 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Users.Profile
namespace osu.Game.Overlays.Profile
{
public class MedalsSection : ProfileSection
{

View File

@ -14,9 +14,9 @@ using osu.Framework.Graphics.Textures;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using osu.Game.Overlays;
using osu.Game.Users;
namespace osu.Game.Users.Profile
namespace osu.Game.Overlays.Profile
{
public class ProfileHeader : Container
{

View File

@ -9,7 +9,7 @@ using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Overlays;
namespace osu.Game.Users.Profile
namespace osu.Game.Overlays.Profile
{
public abstract class ProfileSection : FillFlowContainer
{

View File

@ -13,8 +13,9 @@ using osu.Framework.Input;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Users;
namespace osu.Game.Users.Profile
namespace osu.Game.Overlays.Profile
{
public class RankChart : Container
{

View File

@ -1,7 +1,7 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Users.Profile
namespace osu.Game.Overlays.Profile
{
public class RanksSection : ProfileSection
{

View File

@ -1,7 +1,7 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Users.Profile
namespace osu.Game.Overlays.Profile
{
public class RecentSection : ProfileSection
{

View File

@ -13,8 +13,8 @@ using osu.Game.Graphics.Containers;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Overlays.Profile;
using osu.Game.Users;
using osu.Game.Users.Profile;
namespace osu.Game.Overlays
{

View File

@ -97,18 +97,18 @@
<Compile Include="Overlays\Settings\SettingsHeader.cs" />
<Compile Include="Overlays\Settings\Sections\Audio\MainMenuSettings.cs" />
<Compile Include="Overlays\Toolbar\ToolbarChatButton.cs" />
<Compile Include="Users\Profile\AboutSection.cs" />
<Compile Include="Users\Profile\BeatmapsSection.cs" />
<Compile Include="Users\Profile\HistoricalSection.cs" />
<Compile Include="Users\Profile\KudosuSection.cs" />
<Compile Include="Users\Profile\MedalsSection.cs" />
<Compile Include="Users\Profile\RankChart.cs" />
<Compile Include="Users\Profile\RanksSection.cs" />
<Compile Include="Users\Profile\RecentSection.cs" />
<Compile Include="Overlays\Profile\AboutSection.cs" />
<Compile Include="Overlays\Profile\BeatmapsSection.cs" />
<Compile Include="Overlays\Profile\HistoricalSection.cs" />
<Compile Include="Overlays\Profile\KudosuSection.cs" />
<Compile Include="Overlays\Profile\MedalsSection.cs" />
<Compile Include="Overlays\Profile\RankChart.cs" />
<Compile Include="Overlays\Profile\RanksSection.cs" />
<Compile Include="Overlays\Profile\RecentSection.cs" />
<Compile Include="Users\UserCoverBackground.cs" />
<Compile Include="Overlays\UserProfileOverlay.cs" />
<Compile Include="Users\Profile\ProfileHeader.cs" />
<Compile Include="Users\Profile\ProfileSection.cs" />
<Compile Include="Overlays\Profile\ProfileHeader.cs" />
<Compile Include="Overlays\Profile\ProfileSection.cs" />
<Compile Include="Overlays\Toolbar\ToolbarSocialButton.cs" />
<Compile Include="Rulesets\Beatmaps\BeatmapConverter.cs" />
<Compile Include="Rulesets\Beatmaps\BeatmapProcessor.cs" />