Files
crystall-punk-14/Content.Client/Interfaces/Parallax/IParallaxManager.cs

13 lines
261 B
C#
Raw Normal View History

2018-11-30 21:54:30 +01:00
using System;
using Robust.Client.Graphics;
2018-11-30 21:54:30 +01:00
namespace Content.Client.Interfaces.Parallax
{
public interface IParallaxManager
{
event Action<Texture> OnTextureLoaded;
Texture ParallaxTexture { get; }
void LoadParallax();
}
}