6
StarHorizon_Public/Content.Shared/Holopad/HolographicAvatarComponent.cs
2025-08-05 10:00:54 +03:00

14 lines
380 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;
}