This commit is contained in:
Pieter-Jan Briers
2018-11-30 21:54:30 +01:00
committed by GitHub
parent 0230323563
commit ef3007a603
12 changed files with 714 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
using System;
using SS14.Client.Graphics;
namespace Content.Client.Interfaces.Parallax
{
public interface IParallaxManager
{
event Action<Texture> OnTextureLoaded;
Texture ParallaxTexture { get; }
void LoadParallax();
}
}