11 lines
224 B
C#
11 lines
224 B
C#
namespace Content.Server.Zombies;
|
|
|
|
/// <summary>
|
|
/// This is used for a zombie that cannot be cured by any methods.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class IncurableZombieComponent : Component
|
|
{
|
|
|
|
}
|