mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 18:27:26 +08:00
15 lines
484 B
C#
15 lines
484 B
C#
|
// 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 osu.Framework.Graphics.Containers;
|
|||
|
using osu.Framework.Graphics.Sprites;
|
|||
|
using osu.Game.Graphics.Sprites;
|
|||
|
|
|||
|
namespace osu.Game.Graphics.Containers
|
|||
|
{
|
|||
|
public class OsuTextFlowContainer: TextFlowContainer
|
|||
|
{
|
|||
|
protected override SpriteText CreateSpriteText() => new OsuSpriteText();
|
|||
|
}
|
|||
|
}
|