fish-station/Content.Shared/Chemistry/Components/PillComponent.cs
Leon Friedrich a372daadb2
Remove server-side sprite references from chem master (#15888)
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
2023-04-29 19:27:14 +10:00

15 lines
438 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Chemistry.Components;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)]
public sealed partial class PillComponent : Component
{
/// <summary>
/// The pill id. Used for networking & serializing pill visuals.
/// </summary>
[AutoNetworkedField]
[DataField("pillType")]
[ViewVariables(VVAccess.ReadWrite)]
public uint PillType;
}