mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-06-09 10:06:49 +02:00
a43291233d
* timetonukevampire * snap back to vampirity * firstfix * fixix xif
14 lines
307 B
C#
14 lines
307 B
C#
namespace Content.Shared.Vampire.Components;
|
|
|
|
/// <summary>
|
|
/// A component for testing vampire arson near holy sites.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class HolyPointComponent : Component
|
|
{
|
|
[DataField]
|
|
public float Range = 6f;
|
|
|
|
public float NextTimeTick { get; set; }
|
|
}
|