osukey/osu.Game/Graphics/UserInterface/IHasDrawableRepresentation.cs
2017-03-14 12:15:19 -03:00

13 lines
357 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;
namespace osu.Game.Graphics.UserInterface
{
public interface IHasDrawableRepresentation<out T> where T : Drawable
{
T CreateDrawable();
}
}