2017-03-17 18:29:55 -03:00

19 lines
471 B
C#

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Users
{
public class Team : IHasDrawableRepresentation<Sprite>
{
public string Name;
public Sprite CreateDrawable()
{
return new Sprite();
}
}
}