2019-03-04 12:24:19 +08: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 20:28:42 +08:00
|
|
|
|
2019-03-02 12:40:43 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-11-15 20:28:42 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Beatmaps.Legacy;
|
2021-10-27 16:22:23 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-11-15 20:28:42 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tournament.IPC
|
|
|
|
{
|
|
|
|
public class MatchIPCInfo : Component
|
|
|
|
{
|
2021-10-27 16:22:23 +08:00
|
|
|
public Bindable<APIBeatmap> Beatmap { get; } = new Bindable<APIBeatmap>();
|
2018-11-15 20:28:42 +08:00
|
|
|
public Bindable<LegacyMods> Mods { get; } = new Bindable<LegacyMods>();
|
|
|
|
public Bindable<TourneyState> State { get; } = new Bindable<TourneyState>();
|
2018-11-16 18:43:54 +08:00
|
|
|
public Bindable<string> ChatChannel { get; } = new Bindable<string>();
|
2018-11-15 20:28:42 +08:00
|
|
|
public BindableInt Score1 { get; } = new BindableInt();
|
|
|
|
public BindableInt Score2 { get; } = new BindableInt();
|
|
|
|
}
|
|
|
|
}
|