Files
tbd-station-14/Content.IntegrationTests/DummyParallaxManager.cs
2021-06-09 22:19:39 +02:00

26 lines
469 B
C#

using System;
using Content.Client.Parallax.Managers;
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()
{
}
}
}