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