mirror of
https://github.com/osukey/osukey.git
synced 2025-05-13 01:27:32 +09:00
20 lines
491 B
C#
20 lines
491 B
C#
// 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 osu.Game.Users;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Graphics.UserInterfaceV2.Users
|
|
{
|
|
public class UserListCard : UserCard
|
|
{
|
|
public UserListCard(User user)
|
|
: base(user)
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
Height = 40;
|
|
CornerRadius = 6;
|
|
}
|
|
}
|
|
}
|