mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 11:37:58 +08:00
13 lines
246 B
C#
13 lines
246 B
C#
|
using System;
|
|||
|
using osu.Framework.Graphics.Sprites;
|
|||
|
|
|||
|
namespace osu.Game.Graphics.UserInterface
|
|||
|
{
|
|||
|
public class LoadingAnimation : SpriteText
|
|||
|
{
|
|||
|
public LoadingAnimation()
|
|||
|
{
|
|||
|
Text = "Loading";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|