mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 16:42:57 +08:00
Remove unused file.
This commit is contained in:
parent
954827aaf3
commit
2821451d5b
@ -1,28 +0,0 @@
|
||||
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
||||
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Game.Graphics.Containers;
|
||||
|
||||
namespace osu.Game.Graphics.Components
|
||||
{
|
||||
class FpsDisplay : OsuComponent
|
||||
{
|
||||
SpriteText fpsText;
|
||||
public override void Load()
|
||||
{
|
||||
base.Load();
|
||||
|
||||
Add(fpsText = new SpriteText());
|
||||
|
||||
fpsText.Text = "...";
|
||||
}
|
||||
|
||||
protected override void Update()
|
||||
{
|
||||
fpsText.Text = ((int)(1000 / Clock.ElapsedFrameTime)).ToString();
|
||||
base.Update();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user