Rework how references are passed about

This commit is contained in:
Drew DeVault
2016-11-03 22:43:00 -04:00
parent 55821a1a2b
commit cb40b7079f
6 changed files with 74 additions and 63 deletions

View File

@ -0,0 +1,13 @@
using System;
using osu.Framework.Graphics.Sprites;
namespace osu.Game.Graphics.UserInterface
{
public class LoadingAnimation : SpriteText
{
public LoadingAnimation()
{
Text = "Loading";
}
}
}