mirror of
https://github.com/ppy/osu
synced 2025-01-10 08:09:40 +00: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";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|