1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 05:42:56 +08:00

Fix non-block namespace usage

This commit is contained in:
Dean Herbert 2023-05-02 15:09:24 +09:00
parent e3c384c6b5
commit 8a536c1cdb

View File

@ -11,10 +11,10 @@ using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osuTK.Graphics;
namespace osu.Game.Screens.Edit.Compose.Components.Timeline;
public partial class HitObjectPointPiece : CircularContainer
namespace osu.Game.Screens.Edit.Compose.Components.Timeline
{
public partial class HitObjectPointPiece : CircularContainer
{
protected OsuSpriteText Label { get; private set; }
[BackgroundDependencyLoader]
@ -58,4 +58,5 @@ public partial class HitObjectPointPiece : CircularContainer
{
return colours.Yellow;
}
}
}