12 lines
368 B
C#
12 lines
368 B
C#
namespace Content.Server.GameTicking.Rules.Components;
|
|
|
|
|
|
[RegisterComponent, Access(typeof(ZombieRuleSystem))]
|
|
public sealed class ZombieRuleComponent : Component
|
|
{
|
|
public Dictionary<string, string> InitialInfectedNames = new();
|
|
|
|
public string PatientZeroPrototypeID = "InitialInfected";
|
|
public const string ZombifySelfActionPrototype = "TurnUndead";
|
|
}
|