14 lines
253 B
C#
14 lines
253 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Zombies;
|
|
|
|
/// <summary>
|
|
/// Entities with this component cannot be zombified.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class ZombieImmuneComponent : Component
|
|
{
|
|
//still no
|
|
}
|
|
|