13 lines
337 B
C#
13 lines
337 B
C#
|
|
namespace Content.Server.Pointing.Components;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Causes pointing arrows to go mode and murder this entity.
|
|||
|
|
/// </summary>
|
|||
|
|
[RegisterComponent]
|
|||
|
|
public sealed class PointingArrowAngeringComponent : Component
|
|||
|
|
{
|
|||
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|||
|
|
[DataField("remainingAnger")]
|
|||
|
|
public int RemainingAnger = 5;
|
|||
|
|
}
|