1
0

NonSpreaderZombieComponent.cs 241 B

12345678910
  1. namespace Content.Server.Zombies;
  2. /// <summary>
  3. /// Zombified entities with this component cannot infect other entities by attacking.
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class NonSpreaderZombieComponent: Component
  7. {
  8. }