Files
tbd-station-14/Content.Client/Interfaces/Parallax/IParallaxManager.cs
2019-04-15 21:11:38 -06:00

13 lines
261 B
C#

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