12 lines
220 B
C#
12 lines
220 B
C#
namespace Content.Server.Zombies;
|
|
|
|
/// <summary>
|
|
/// Entities with this component cannot be zombified.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class ZombieImmuneComponent : Component
|
|
{
|
|
//still no
|
|
}
|
|
|