1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-15 09:12:35 +08:00
Files
osu-lazer/osu.Game.Tests/Visual/UserInterface/TestSceneGhostIcon.cs
T
2025-06-04 19:58:04 +02:00

23 lines
576 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osuTK;
namespace osu.Game.Tests.Visual.UserInterface
{
public partial class TestSceneGhostIcon : OsuTestScene
{
public TestSceneGhostIcon()
{
Add(new GhostIcon
{
Size = new Vector2(64),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
});
}
}
}