1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 20:37:19 +08:00

13 lines
341 B
C#
Raw Normal View History

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