mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
19 lines
484 B
C#
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";
|
|
}
|
|
}
|
|
}
|