6
StarHorizon_Public/Content.Shared/Puppet/VentriloquistPuppetComponent.cs
2025-08-13 15:03:01 +03:00

26 lines
772 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Puppet;
[RegisterComponent, NetworkedComponent]
public sealed partial class VentriloquistPuppetComponent : Component
{
[DataField, ViewVariables(VVAccess.ReadWrite)]
public List<LocId> RemoveHand = new ();
[DataField, ViewVariables(VVAccess.ReadWrite)]
public List<LocId> RemovedHand = new();
[DataField, ViewVariables(VVAccess.ReadWrite)]
public List<LocId> InsertHand = new ();
[DataField, ViewVariables(VVAccess.ReadWrite)]
public List<LocId> InsertedHand = new ();
[DataField, ViewVariables(VVAccess.ReadWrite)]
public List<LocId> PuppetRoleName = new ();
[DataField, ViewVariables(VVAccess.ReadWrite)]
public List<LocId> PuppetRoleDescription = new ();
}