1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:07:21 +08:00

21 lines
856 B
C#
Raw Normal View History

2023-06-23 01:37:25 +09:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2019-03-04 13:24:19 +09:00
// See the LICENCE file in the repository root for full licence text.
2018-11-15 21:28:42 +09:00
2019-03-02 13:40:43 +09:00
using osu.Framework.Bindables;
2018-11-15 21:28:42 +09:00
using osu.Framework.Graphics;
using osu.Game.Beatmaps.Legacy;
using osu.Game.Tournament.Models;
2018-11-15 21:28:42 +09:00
namespace osu.Game.Tournament.IPC
{
2022-11-24 14:32:20 +09:00
public partial class MatchIPCInfo : Component
2018-11-15 21:28:42 +09:00
{
2023-08-09 19:11:51 +09:00
public Bindable<TournamentBeatmap?> Beatmap { get; } = new Bindable<TournamentBeatmap?>();
2018-11-15 21:28:42 +09:00
public Bindable<LegacyMods> Mods { get; } = new Bindable<LegacyMods>();
public Bindable<TourneyState> State { get; } = new Bindable<TourneyState>();
public Bindable<string> ChatChannel { get; } = new Bindable<string>();
public BindableLong Score1 { get; } = new BindableLong();
public BindableLong Score2 { get; } = new BindableLong();
2018-11-15 21:28:42 +09:00
}
}