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