Improve integration testing

This commit is contained in:
Pieter-Jan Briers
2019-06-29 01:58:16 +02:00
parent e8498d1bb2
commit f97977323a
12 changed files with 177 additions and 20 deletions

View 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()
{
}
}
}