13 lines
259 B
C#
13 lines
259 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared.Zombies;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Makes it so an entity can view ZombieAntagIcons.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, NetworkedComponent]
|
||
|
|
public sealed partial class ShowZombieIconsComponent: Component
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|