1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 13:17:26 +08:00
osu-lazer/osu.Game/Screens/Tournament/ITeamList.cs

13 lines
327 B
C#
Raw Normal View History

2017-03-03 17:47:56 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
namespace osu.Game.Screens.Tournament
{
public interface ITeamList
{
IEnumerable<Team> Teams { get; }
}
}