Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com>
14 lines
388 B
C#
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;
|
|
}
|