Improve integration testing
This commit is contained in:
25
Content.IntegrationTests/DummyParallaxManager.cs
Normal file
25
Content.IntegrationTests/DummyParallaxManager.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using Content.Client.Interfaces.Parallax;
|
||||
using Robust.Client.Graphics;
|
||||
|
||||
namespace Content.IntegrationTests
|
||||
{
|
||||
public sealed class DummyParallaxManager : IParallaxManager
|
||||
{
|
||||
public event Action<Texture> OnTextureLoaded
|
||||
{
|
||||
add
|
||||
{
|
||||
}
|
||||
remove
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public Texture ParallaxTexture => null;
|
||||
|
||||
public void LoadParallax()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user