osu/osu.Game/Users/Profile/ProfileSection.cs

19 lines
490 B
C#
Raw Normal View History

2017-05-24 18:11:07 +00:00
// 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;
2017-06-05 13:07:57 +00:00
namespace osu.Game.Users.Profile
2017-05-24 18:11:07 +00:00
{
2017-06-05 13:07:57 +00:00
public abstract class ProfileSection : Container
2017-05-24 18:11:07 +00:00
{
protected readonly User User;
public abstract string Title { get; }
2017-06-05 13:07:57 +00:00
protected ProfileSection(User user)
2017-05-24 18:11:07 +00:00
{
User = user;
}
}
}