2019-06-29 01:58:16 +02:00
|
|
|
using System;
|
2021-06-09 22:19:39 +02:00
|
|
|
using Content.Client.Parallax.Managers;
|
2019-06-29 01:58:16 +02:00
|
|
|
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()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|