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