osukey/osu.Game/Users/UserPage/UserPageSection.cs
2017-05-27 23:37:15 +08:00

19 lines
493 B
C#

// 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.Framework.Graphics.Containers;
namespace osu.Game.Users.UserPage
{
public abstract class UserPageSection : Container
{
protected readonly User User;
public abstract string Title { get; }
protected UserPageSection(User user)
{
User = user;
}
}
}