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

14 lines
358 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;
using osu.Game.Users;
2017-03-03 09:47:56 +00:00
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
{
IEnumerable<Region> Teams { get; }
2017-03-03 09:47:56 +00:00
}
}