Files
tbd-station-14/Content.Client/Interfaces/Parallax/IParallaxManager.cs
Pieter-Jan Briers ef3007a603 Parallax (#131)
2018-11-30 21:54:30 +01:00

13 lines
259 B
C#

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