26 lines
469 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|