osu/osu.Game/Screens/Tournament/Teams/ITeamList.cs

13 lines
341 B
C#
Raw Normal View History

2017-03-03 09:47:56 +00: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 11:42:22 +00:00
namespace osu.Game.Screens.Tournament.Teams
2017-03-03 09:47:56 +00:00
{
public interface ITeamList
{
2017-05-02 09:00:37 +00:00
IEnumerable<DrawingsTeam> Teams { get; }
2017-03-03 09:47:56 +00:00
}
}