mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 04:07:22 +09: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();
|
|
}
|
|
}
|