6
StarHorizon_Public/Content.Shared/Holopad/HolographicAvatarComponent.cs
2025-11-07 12:32:48 +03: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;
}