Files
tbd-station-14/Content.IntegrationTests/DummyParallaxManager.cs
2022-05-13 17:59:03 +10:00

19 lines
484 B
C#

using Content.Client.Parallax.Managers;
using Content.Client.Parallax;
using Robust.Shared.Maths;
namespace Content.IntegrationTests
{
public sealed class DummyParallaxManager : IParallaxManager
{
public string ParallaxName { get; set; } = "";
public Vector2 ParallaxAnchor { get; set; }
public ParallaxLayerPrepared[] ParallaxLayers { get; } = {};
public void LoadParallax()
{
ParallaxName = "default";
}
}
}