Path: blob/master/osu.Game.Tests/Visual/UserInterface/TestSceneGhostIcon.cs
4346 views
// Copyright (c) ppy Pty Ltd <[email protected]>. 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, }); } } }