2019-03-04 04:24:19 +00: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 12:28:42 +00:00
|
|
|
|
|
2019-03-02 04:40:43 +00:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-11-15 12:28:42 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Beatmaps.Legacy;
|
2022-06-17 22:34:09 +00:00
|
|
|
|
using osu.Game.Tournament.Models;
|
2018-11-15 12:28:42 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.IPC
|
|
|
|
|
{
|
|
|
|
|
public partial class MatchIPCInfo : Component
|
|
|
|
|
{
|
2023-08-09 10:11:51 +00:00
|
|
|
|
public Bindable<TournamentBeatmap?> Beatmap { get; } = new Bindable<TournamentBeatmap?>();
|
2018-11-15 12:28:42 +00:00
|
|
|
|
public Bindable<LegacyMods> Mods { get; } = new Bindable<LegacyMods>();
|
|
|
|
|
public Bindable<TourneyState> State { get; } = new Bindable<TourneyState>();
|
2018-11-16 10:43:54 +00:00
|
|
|
|
public Bindable<string> ChatChannel { get; } = new Bindable<string>();
|
2023-08-16 08:25:25 +00:00
|
|
|
|
public BindableLong Score1 { get; } = new BindableLong();
|
|
|
|
|
public BindableLong Score2 { get; } = new BindableLong();
|
2018-11-15 12:28:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|