Remove server-side sprite references from chem master (#15888)

Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
Leon Friedrich
2023-04-29 21:27:14 +12:00
committed by GitHub
parent 83c9e2bb50
commit a372daadb2
4 changed files with 45 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
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;
}