mirror of https://github.com/ppy/osu
Expose AddTextAwesome for OsuTextFlowContainer.
This commit is contained in:
parent
fcd137ced2
commit
c75e2909ee
|
@ -1,6 +1,8 @@
|
|||
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Game.Graphics.Sprites;
|
||||
|
@ -10,5 +12,7 @@ namespace osu.Game.Graphics.Containers
|
|||
public class OsuTextFlowContainer: TextFlowContainer
|
||||
{
|
||||
protected override SpriteText CreateSpriteText() => new OsuSpriteText();
|
||||
|
||||
public IEnumerable<SpriteText> AddTextAwesome(FontAwesome icon, Action<SpriteText> creationParameters = null) => AddText(((char)icon).ToString(), creationParameters);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue