2021-06-09 22:19:39 +02:00
|
|
|
using Content.Client.Parallax.Managers;
|
2022-05-04 17:55:21 +01:00
|
|
|
using Content.Client.Parallax;
|
|
|
|
|
using Robust.Shared.Maths;
|
2019-06-29 01:58:16 +02:00
|
|
|
|
|
|
|
|
namespace Content.IntegrationTests
|
|
|
|
|
{
|
|
|
|
|
public sealed class DummyParallaxManager : IParallaxManager
|
|
|
|
|
{
|
2022-05-04 17:55:21 +01:00
|
|
|
public string ParallaxName { get; set; } = "";
|
|
|
|
|
public Vector2 ParallaxAnchor { get; set; }
|
|
|
|
|
public ParallaxLayerPrepared[] ParallaxLayers { get; } = {};
|
2019-06-29 01:58:16 +02:00
|
|
|
|
|
|
|
|
public void LoadParallax()
|
|
|
|
|
{
|
2022-05-04 17:55:21 +01:00
|
|
|
ParallaxName = "default";
|
2019-06-29 01:58:16 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|