Implement the score panel

This commit is contained in:
smoogipoo
2020-03-17 16:59:34 +09:00
parent 5e3668b2ea
commit 05789e6fe4
5 changed files with 407 additions and 0 deletions

View File

@ -0,0 +1,15 @@
// 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.Framework.Graphics.Containers;
using osu.Game.Scoring;
namespace osu.Game.Screens.Ranking.Expanded
{
public class ExpandedPanelMiddleContent : CompositeDrawable
{
public ExpandedPanelMiddleContent(ScoreInfo score)
{
}
}
}