osu/osu.Game.Tournament/IPC/MatchIPCInfo.cs

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

21 lines
856 B
C#
Raw Normal View History

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;
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>();
public Bindable<string> ChatChannel { get; } = new Bindable<string>();
public BindableLong Score1 { get; } = new BindableLong();
public BindableLong Score2 { get; } = new BindableLong();
2018-11-15 12:28:42 +00:00
}
}