1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-14 05:43:33 +08:00
osu-lazer/osu.Game/Users/UserPage/UserPageSection.cs

19 lines
493 B
C#
Raw Normal View History

2017-05-25 02:11:07 +08: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;
namespace osu.Game.Users.UserPage
2017-05-25 02:11:07 +08:00
{
public abstract class UserPageSection : Container
{
protected readonly User User;
public abstract string Title { get; }
protected UserPageSection(User user)
{
User = user;
}
}
}