Files
tbd-station-14/Content.Client/Parallax/Managers/IParallaxManager.cs
2021-06-09 22:19:39 +02:00

13 lines
261 B
C#

using System;
using Robust.Client.Graphics;
namespace Content.Client.Parallax.Managers
{
public interface IParallaxManager
{
event Action<Texture>? OnTextureLoaded;
Texture? ParallaxTexture { get; }
void LoadParallax();
}
}