1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 03:57:46 +08:00
osu-lazer/osu.Game.Tournament/Screens/Gameplay/Components/TournamentMatchScoreDisplay.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
581 B
C#
Raw Normal View History

2019-03-04 13:24:19 +09:00
// 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.
2018-11-15 21:28:42 +09:00
using osu.Framework.Allocation;
using osu.Game.Screens.Play.HUD;
2018-11-15 21:28:42 +09:00
using osu.Game.Tournament.IPC;
namespace osu.Game.Tournament.Screens.Gameplay.Components
{
public partial class TournamentMatchScoreDisplay : MatchScoreDisplay
2018-11-15 21:28:42 +09:00
{
[BackgroundDependencyLoader]
2022-01-15 01:06:39 +01:00
private void load(MatchIPCInfo ipc)
2018-11-15 21:28:42 +09:00
{
Team1Score.BindTo(ipc.Score1);
Team2Score.BindTo(ipc.Score2);
}
2018-11-15 21:28:42 +09:00
}
}