mirror of
https://github.com/ppy/osu
synced 2025-01-11 08:39:31 +00:00
Add a few more missing partial specs
This commit is contained in:
parent
894ef15e79
commit
212d78865a
@ -12,7 +12,7 @@ using osu.Framework.Graphics.Rendering;
|
|||||||
|
|
||||||
namespace osu.Game.Tests.Visual.Background
|
namespace osu.Game.Tests.Visual.Background
|
||||||
{
|
{
|
||||||
public class TestSceneTriangleBorderShader : OsuTestScene
|
public partial class TestSceneTriangleBorderShader : OsuTestScene
|
||||||
{
|
{
|
||||||
private readonly TriangleBorder border;
|
private readonly TriangleBorder border;
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ namespace osu.Game.Tests.Visual.Background
|
|||||||
AddSliderStep("Thickness", 0f, 1f, 0.02f, t => border.Thickness = t);
|
AddSliderStep("Thickness", 0f, 1f, 0.02f, t => border.Thickness = t);
|
||||||
}
|
}
|
||||||
|
|
||||||
private class TriangleBorder : Sprite
|
private partial class TriangleBorder : Sprite
|
||||||
{
|
{
|
||||||
private float thickness = 0.02f;
|
private float thickness = 0.02f;
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ using osu.Game.Graphics.Backgrounds;
|
|||||||
|
|
||||||
namespace osu.Game.Tests.Visual.Background
|
namespace osu.Game.Tests.Visual.Background
|
||||||
{
|
{
|
||||||
public class TestSceneTrianglesV2Background : OsuTestScene
|
public partial class TestSceneTrianglesV2Background : OsuTestScene
|
||||||
{
|
{
|
||||||
private readonly TrianglesV2 triangles;
|
private readonly TrianglesV2 triangles;
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ using osu.Game.Overlays.Chat;
|
|||||||
namespace osu.Game.Tests.Visual.Online
|
namespace osu.Game.Tests.Visual.Online
|
||||||
{
|
{
|
||||||
[TestFixture]
|
[TestFixture]
|
||||||
public class TestSceneDrawableChannel : OsuTestScene
|
public partial class TestSceneDrawableChannel : OsuTestScene
|
||||||
{
|
{
|
||||||
private Channel channel = null!;
|
private Channel channel = null!;
|
||||||
private DrawableChannel drawableChannel = null!;
|
private DrawableChannel drawableChannel = null!;
|
||||||
|
@ -19,7 +19,7 @@ using osu.Framework.Graphics;
|
|||||||
|
|
||||||
namespace osu.Game.Graphics.Backgrounds
|
namespace osu.Game.Graphics.Backgrounds
|
||||||
{
|
{
|
||||||
public class TrianglesV2 : Drawable
|
public partial class TrianglesV2 : Drawable
|
||||||
{
|
{
|
||||||
private const float triangle_size = 100;
|
private const float triangle_size = 100;
|
||||||
private const float base_velocity = 50;
|
private const float base_velocity = 50;
|
||||||
|
@ -24,7 +24,7 @@ using osu.Game.Resources.Localisation.Web;
|
|||||||
namespace osu.Game.Skinning.Components
|
namespace osu.Game.Skinning.Components
|
||||||
{
|
{
|
||||||
[UsedImplicitly]
|
[UsedImplicitly]
|
||||||
public class BeatmapAttributeText : Container, ISkinnableDrawable
|
public partial class BeatmapAttributeText : Container, ISkinnableDrawable
|
||||||
{
|
{
|
||||||
public bool UsesFixedAnchor { get; set; }
|
public bool UsesFixedAnchor { get; set; }
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ using osu.Game.Graphics.Sprites;
|
|||||||
namespace osu.Game.Skinning.Components
|
namespace osu.Game.Skinning.Components
|
||||||
{
|
{
|
||||||
[UsedImplicitly]
|
[UsedImplicitly]
|
||||||
public class TextElement : Container, ISkinnableDrawable
|
public partial class TextElement : Container, ISkinnableDrawable
|
||||||
{
|
{
|
||||||
public bool UsesFixedAnchor { get; set; }
|
public bool UsesFixedAnchor { get; set; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user