Files
OldThink/Content.Server/_White/Felinid/CoughingUpHairballComponent.cs

13 lines
357 B
C#
Raw Permalink Normal View History

namespace Content.Server.Abilities.Felinid
{
[RegisterComponent]
2024-01-13 09:14:00 +03:00
public sealed partial class CoughingUpHairballComponent : Component
{
[DataField("accumulator")]
public float Accumulator = 0f;
[DataField("coughUpTime")]
public TimeSpan CoughUpTime = TimeSpan.FromSeconds(2.15); // length of hairball.ogg
}
}