1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 12:53:11 +08:00

Move into components namespace

This commit is contained in:
smoogipoo 2019-08-13 14:07:40 +09:00
parent 416f9d89db
commit 5681d1097c
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Overlays.Profile.Header;
using osu.Game.Overlays.Profile.Header.Components;
using osu.Game.Users;
namespace osu.Game.Tests.Visual.Online

View File

@ -1,6 +1,8 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
@ -11,10 +13,8 @@ using osu.Framework.Input.Events;
using osu.Game.Graphics;
using osu.Game.Users;
using osuTK;
using System;
using System.Linq;
namespace osu.Game.Overlays.Profile.Header
namespace osu.Game.Overlays.Profile.Header.Components
{
public class PreviousUsernamesContainer : CompositeDrawable
{