16 lines
438 B
C#
16 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;
|
|
}
|