Files
tbd-station-14/Content.Client/Interfaces/Parallax/IParallaxManager.cs
DrSmugleaf 902aa128c2 Enable nullability in Content.Client (#3257)
* Enable nullability in Content.Client

* Remove #nullable enable

* Merge fixes

* Remove Debug.Assert

* Merge fixes

* Fix build

* Fix build
2021-03-10 14:48:29 +01:00

13 lines
263 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();
}
}