Files
tbd-station-14/Content.Shared/Zombies/ZombieImmuneComponent.cs
Prole f78280501a Moving Zombie Components to Shared (#39791)
* Moving Comps to Shared

* Requested Changes
2025-08-21 01:35:38 +02:00

14 lines
273 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Zombies;
/// <summary>
/// Entities with this component cannot be zombified.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class ZombieImmuneComponent : Component
{
//still no
}