Files
tbd-station-14/Content.Client/Parallax/ParallaxLayerPrepared.cs
2022-05-04 09:55:21 -07:00

23 lines
512 B
C#

using System;
using Robust.Client.Graphics;
using Content.Client.Parallax.Data;
namespace Content.Client.Parallax;
/// <summary>
/// A 'prepared' (i.e. texture loaded and ready to use) parallax layer.
/// </summary>
public struct ParallaxLayerPrepared
{
/// <summary>
/// The loaded texture for this layer.
/// </summary>
public Texture Texture { get; set; }
/// <summary>
/// The configuration for this layer.
/// </summary>
public ParallaxLayerConfig Config { get; set; }
}