mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 07:27:51 +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";
|
|
}
|
|
}
|
|
} |