1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 14:47:24 +08:00
osu-lazer/osu.Game/Screens/Tournament/Teams/ITeamList.cs

13 lines
333 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;
2017-03-03 19:42:22 +08:00
namespace osu.Game.Screens.Tournament.Teams
2017-03-03 17:47:56 +08:00
{
public interface ITeamList
{
IEnumerable<Team> Teams { get; }
}
}