Files
tbd-station-14/Content.IntegrationTests/DummyParallaxManager.cs
2019-06-29 01:58:16 +02:00

26 lines
471 B
C#

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