Files
tbd-station-14/Content.Shared/Holopad/HolographicAvatarComponent.cs
2025-05-13 01:50:43 -07:00

14 lines
388 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Holopad;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class HolographicAvatarComponent : Component
{
/// <summary>
/// The prototype sprite layer data for the hologram
/// </summary>
[DataField, AutoNetworkedField]
public PrototypeLayerData[]? LayerData = null;
}