mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 23:48:15 +03:00
13 lines
261 B
C#
13 lines
261 B
C#
using System;
|
|
using Robust.Client.Graphics;
|
|
|
|
namespace Content.Client.Parallax.Managers
|
|
{
|
|
public interface IParallaxManager
|
|
{
|
|
event Action<Texture>? OnTextureLoaded;
|
|
Texture? ParallaxTexture { get; }
|
|
void LoadParallax();
|
|
}
|
|
}
|