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:
parent
af4ddf8fbd
commit
6372cd0a13
@ -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
|
||||
{
|
@ -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
|
||||
{
|
@ -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
|
||||
{
|
@ -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
|
||||
{
|
@ -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
|
||||
{
|
@ -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
|
||||
{
|
@ -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
|
||||
{
|
@ -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
|
||||
{
|
@ -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
|
||||
{
|
@ -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
|
||||
{
|
@ -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
|
||||
{
|
||||
|
@ -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" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user