2021-07-21 17:59:02 +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.
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using MessagePack;
|
|
|
|
|
2021-07-27 17:55:04 +08:00
|
|
|
#nullable enable
|
|
|
|
|
2021-07-21 17:59:02 +08:00
|
|
|
namespace osu.Game.Online.Multiplayer.MatchRulesets.TeamVs
|
|
|
|
{
|
|
|
|
public class TeamVsMatchRoomState : MatchRulesetRoomState
|
|
|
|
{
|
|
|
|
[Key(0)]
|
2021-07-27 17:55:04 +08:00
|
|
|
public List<MultiplayerTeam> Teams { get; set; } = new List<MultiplayerTeam>();
|
2021-07-21 17:59:02 +08:00
|
|
|
}
|
|
|
|
}
|