2018-11-30 21:54:30 +01:00
|
|
|
using System;
|
2019-04-15 21:11:38 -06:00
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|