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

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

13 lines
308 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Zombies;
/// <summary>
/// Entities with this component zombify on death.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class ZombifyOnDeathComponent : Component
{
//this is not the component you are looking for
}