13 lines
261 B
C#
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();
|
|
}
|
|
}
|